Algorithms
Algorithms copied to clipboard
Add longest increasing subsequence O(nlogn) implementation.
There's a faster way than the DP approach to solve the LIS problem. It can be solved in O(nlogn) time with a binary search, let's add it to the repo.
http://ujjavalsingh.blogspot.com/2013/08/longest-increasing-sub-sequence-on-logn.html
Hey, I'd like to give this a try.