首页 > 学院 > 开发设计 > 正文

300. Longest Increasing Subsequence

2019-11-06 08:20:24
字体:
来源:转载
供稿:网友

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? O(n2)算法

class Solution {public: int lengthOfLIS(vector<int>& nums) { int size = nums.size(), max = 1; if(size == 0) return 0; for(int i = 0; i < size - 1; ++i){ int pre = nums[i], len = 1, prePre = 0x7fffffff; for(int j = i + 1; j < size; ++j){ if(nums[j] > pre){ ++len; prePre = pre; pre = nums[j]; } else if(prePre < nums[j] && nums[j] < pre && nums[j] > nums[i]){ prePre = pre; pre = nums[j]; } } if(len > max) max = len; } return max; }};
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表