File: longest_increasing_subsequence.cpp

package info (click to toggle)
seqan2 2.5.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 228,748 kB
  • sloc: cpp: 257,602; ansic: 91,967; python: 8,326; sh: 1,056; xml: 570; makefile: 229; awk: 51; javascript: 21
file content (37 lines) | stat: -rw-r--r-- 889 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#include <iostream>
#include <seqan/graph_algorithms.h>

using namespace seqan2;

int main()
{
    // Create a sequence of integers.
    String<unsigned> seq;
    appendValue(seq, 5);
    appendValue(seq, 3);
    appendValue(seq, 4);
    appendValue(seq, 9);
    appendValue(seq, 6);
    appendValue(seq, 2);
    appendValue(seq, 1);
    appendValue(seq, 8);
    appendValue(seq, 7);
    appendValue(seq, 10);

    // Compute the longest increasing subsequence.
    typedef Position<String<unsigned> >::Type TPosition;
    String<TPosition> pos;
    longestIncreasingSubsequence(seq, pos);

    // Print the result to stdout.
    for (unsigned i = 0; i < length(seq); ++i)
        std::cout << seq[i] << ',';

    std::cout << "\n"
              << "Lis: \n";
    for (int i = length(pos) - 1; i >= 0; --i)
        std::cout << seq[pos[i]] <<  ',';
    std::cout << "\n";

    return 0;
}