300. Longest Increasing Subsequence

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?

题目含义:给定一个没有排序的数组,返回最长递增子序列(注意不是子字符串)的长度

 

复制代码
 1     public int lengthOfLIS(int[] nums) {
 2         if(nums.length == 0){
 3             return 0;
 4         }
 5         int[] a = new int[nums.length];
 6         int max = 0;
 7         //依次遍历每一个元素,如果前面没有比他小的数字,则该数字构成的子串最大长度为1.
 8         // 如果前面有多个比他小的数字,找出他们的最大值,然后加1作为本节点的最大长度
 9         for (int i=0;i<nums.length;i++)
10         {
11             a[i] = 1;
12             for (int j=0;j<i;j++)
13             {
14                 if(nums[j]<nums[i])
15                 {
16                     a[i] = Math.max(a[i],a[j]+1);
17                 }
18             }
19             max = Math.max(max,a[i]);
20         }
21         return max;        
22     }
复制代码

 

posted @   daniel456  阅读(122)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列:基于图像分类模型对图像进行分类
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
阅读排行:
· 25岁的心里话
· 闲置电脑爆改个人服务器(超详细) #公网映射 #Vmware虚拟网络编辑器
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· 零经验选手,Compose 一天开发一款小游戏!
· 一起来玩mcp_server_sqlite,让AI帮你做增删改查!!
点击右上角即可分享
微信分享提示