美文网首页
300. Longest Increasing Subseque

300. Longest Increasing Subseque

作者: HalcyonMoon | 来源:发表于2016-06-29 23:15 被阅读0次

Given an unsorted array of integers, find the length of longest increasing subsequence.
For example,Given [10, 9, 2, 5, 3, 7, 101, 18],The longest increasing subsequence is [2, 3, 7, 101], therefore the length is 4. Note that there may be more than one LIS combination, it is only necessary for you to return the length.

Your algorithm should run in O(n2) complexity.

Follow up: Could you improve it to O(n log n) time complexity?

相关文章

网友评论

      本文标题:300. Longest Increasing Subseque

      本文链接:https://www.haomeiwen.com/subject/edjxjttx.html