-
Notifications
You must be signed in to change notification settings - Fork 362
/
longest_decreasing_subsequence.hpp
73 lines (64 loc) · 2.29 KB
/
longest_decreasing_subsequence.hpp
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#ifndef LONGEST_DECREASING_SUBSEQUENCE
#define LONGEST_DECREASING_SUBSEQUENCE
/*
Longest Decreasing Subsequence
---------------------
This algorithm finds the longest decreasing subsequence in a sequence of numbers
Time complexity
----------------
O(n log(n)) where n is the number of elements in the initial list
Space complexity
---------------
O(n)
*/
#include <iostream>
#include <vector>
using std::vector;
using std::cout;
using std::endl;
/*
* Function finds the longest_decreasing_subsequence for a vector input
*/
int longest_decreasing_subsequence(vector<int>& input, const bool to_show_state = false) {
int elements = input.size(); //number of elements in the vector
if (elements == 1 || elements == 0) {
return elements; //base case
}
int array[elements]; //array to store the longest increasing subsequence at each location, this can then be used to backtrack and find what was the longest sequence
int max = 0; //max represents current largest size
for (int i = 0; i < elements; i++) {
array[i] = 1; //default value
}
for (int i = 1; i < elements; i++) {
for (int j = 0; j < i; j++) {
if ((input[j] - input[i] > 0) && array[i] < array[j] + 1) { //if the value is greater than or less than and that element in the array has more elements in its subsequence
array[i]++;
}
}
}
for (int i = 0; i < elements; i++) { //now we set the max to the highest value
if (array[i] > max) {
max = array[i];
}
}
if (to_show_state) { //if this is true print out the subsequence
vector<int> sub; //this vector will be populated with the ordered subsequence
int counter = max;
for (int i = elements - 1; i > -1; i--) {
if (array[i] == counter)
if (counter == max) { //the last value in the sequence will have the highest value
sub.push_back(input.at(i));
counter--;
} else if (input.at(i) - sub.at(sub.size() - 1) > 0) {
sub.push_back(input.at(i));
counter--;
}
}
for (int i = max-1; i > -1; i--) {
cout << sub.at(i) << ", ";
}
cout << endl;
}
return max;
}
#endif