Monthly Archives: November 2009
Extract Longest Non-Decreasing Sequence From Any Sequence
I wrote some python code that extracts the longest non-decreasing subsequence from any given sequence. This runs in O(n log n) time, and uses O(n) memory. ”’ An item in the final sequence, used to form a linked list. ”’ … Continue reading