博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LeetCode -- Longest Increasing Subsequence(LIS)
阅读量:5022 次
发布时间:2019-06-12

本文共 1424 字,大约阅读时间需要 4 分钟。

Question:

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?

 

Analysis:

 给出一个由正整数构成的数组,找出里面最长的子序列。(序列,不要求每个数字都是连续的)

例如:给出数组{10, 9, 2, 5, 3, 7, 101, 18},最长的子序列为{2, 3, 7, 101},因此长度为4. 注意可能有不止一个LIS序列,这里仅仅要求你返回他们的长度。

要求算法的时间复杂度为O(n2).

Follow up: 你可以将时间复杂度提升到O(nlogn)嘛?

 

思路:由于前面做过判断是否存在长度为3的递增子序列,按照相似的思路,乍一眼看到这个问题感觉比较简单,可以很容易的解决,结果后面越分析越复杂。只管来说应该按照DP的思想解决,但是前面做过N多关于DP的题目了,仍然对这类题目还是不开窍。。好郁闷。。因此在网上参考了九章算术的答案。具体思路是,用一个额外的数组现将到该位置时的子序列长度设为1,然后从第一个元素开始往当前元素循环(简单来说就是加一层循环看前面有几个元素比当前元素小),然后更新result最为最终的返回结果。

(通过上面及以前的分析可知,一般动态规划的题目都可以牺牲一点空间复杂度来达到目的,如果暂时想不出DP的状态转化公式且题目没有明显的要求空间复杂度时可考虑先用额外的数组等来存储每步的转态,至少保证能够解答出题目)。

 

Answer:

public class Solution {    public int lengthOfLIS(int[] nums) {        if(nums == null)            return 0;        int[] num = new int[nums.length];        int result = 0;        for(int i=0; i
num[j] + 1 ? num[i] : num[j] +1; } } if(num[i] > result) result = num[i]; } return result; }}

 

转载于:https://www.cnblogs.com/little-YTMM/p/5213157.html

你可能感兴趣的文章
Android中获取应用程序(包)的大小-----PackageManager的使用(二)
查看>>
Codeforces Gym 100513M M. Variable Shadowing 暴力
查看>>
浅谈 Mybatis中的 ${ } 和 #{ }的区别
查看>>
CNN 笔记
查看>>
版本更新
查看>>
SQL 单引号转义
查看>>
start
查看>>
实现手机扫描二维码页面登录,类似web微信-第三篇,手机客户端
查看>>
PHP socket客户端长连接
查看>>
7、shell函数
查看>>
【转】Apache Jmeter发送post请求
查看>>
Nginx 基本 安装..
查看>>
【凸优化】保留凸性的几个方式(交集、仿射变换、投影、线性分式变换)
查看>>
C++ primer plus学习笔记 (1) _Setting out to C++
查看>>
数据结构和算法:递归和迭代算法示例
查看>>
win10 清理winsxs文件夹
查看>>
(LeetCode 203)Remove Linked List Elements
查看>>
《BI项目笔记》用Excel2013连接和浏览OLAP多维数据集
查看>>
.net 获取远程访问的ip
查看>>
管理Cookie和Session
查看>>