1. 首页
  2. 数据库
  3. 其它
  4. DP、二分 LeetCode300. 最长上升子序列(Python)

DP、二分 LeetCode300. 最长上升子序列(Python)

上传者: 2020-12-23 00:25:23上传 PDF文件 126.1KB 热度 21次
1、题目描述 给定一个无序的整数数组,找到其中最长上升子序列的长度。 输入: [10,9,2,5,3,7,101,18] 输出: 4 解释: 最长的上升子序列是 [2,3,7,101],它的长度是 4。 说明:可能会有多种最长上升子序列的组合,你只需要输出对应的长度即可。 2、代码详解 法一:DP,O(N^2) class Solution(object): def lengthOfLIS(self, nums): """ :type nums: List[int] :rtype: int """
用户评论