敢教日月换新天。为有牺牲多壮志,

[Swift]LeetCode300. 最长上升子序列 | Longest Increasing Subsequence

★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
➤微信公众号:山青咏芝(shanqingyongzhi)
➤博客园地址:山青咏芝(https://www.cnblogs.com/strengthen/
➤GitHub地址:https://github.com/strengthen/LeetCode
➤原文地址:https://www.cnblogs.com/strengthen/p/10241381.html 
➤如果链接不是山青咏芝的博客园地址,则可能是爬取作者的文章。
➤原文已修改更新!强烈建议点击原文地址阅读!支持作者!支持原创!
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★

热烈欢迎,请直接点击!!!

进入博主App Store主页,下载使用各个作品!!!

注:博主将坚持每月上线一个新app!!!

Given an unsorted array of integers, find the length of longest increasing subsequence.

Example:

[10,9,2,5,3,7,101,18]
[2,3,7,101]
4

Note:

  • 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?


给定一个无序的整数数组,找到其中最长上升子序列的长度。

示例:

[10,9,2,5,3,7,101,18]
[2,3,7,101],
4

说明:

  • 可能会有多种最长上升子序列的组合,你只需要输出对应的长度即可。
  • 你算法的时间复杂度应该为 O(n2) 。

进阶: 你能将算法的时间复杂度降低到 O(n log n) 吗?


16ms

复制代码
 1 class Solution {
 2     func lengthOfLIS(_ nums: [Int]) -> Int {
 3         if nums.count < 2 {
 4             return nums.count
 5         }
 6         var res = Array(repeating: 0, count: nums.count)
 7         res[0] = nums[0]
 8         var count = 1
 9         var j = 0
10         for i in 0..<nums.count {
11             let tmp = nums[i]
12             if tmp > res[count - 1] {
13                 j = count
14                 count += 1
15             }else {
16                 var left = 0
17                 var right = count - 1
18                 while left < right {
19                     let mid = (left + right) / 2
20                     if res[mid] >= nums[i] {
21                         right = mid
22                     }else {
23                         left = mid + 1
24                     }
25                 }
26                 j = left
27             }
28             res[j] = nums[i]
29         }
30         return count
31     }
32 }
复制代码

56ms

复制代码
 1 class Solution {
 2     func lengthOfLIS(_ nums: [Int]) -> Int {
 3         var results = [Int]()
 4         for num in nums {
 5             var needAdd = true
 6             if results.count > 0 {
 7                 for index in 0..<results.count {
 8                     if num <= results[index] {
 9                         results[index] = num
10                         needAdd = false
11                         break
12                     }
13                 }
14             }
15             if needAdd {
16                 results.append(num)
17             }
18         }
19         return results.count
20     }
21 }
复制代码

300ms

复制代码
 1 class Solution {
 2     func lengthOfLIS(_ nums: [Int]) -> Int {
 3         guard !nums.isEmpty else {
 4             return 0
 5         }
 6         
 7         var dps = Array(repeating: 1, count: nums.count)
 8         var result = 1
 9         for index in 1..<nums.count {
10             let num = nums[index]
11             for j in 0..<index {
12                 if num > nums[j] {
13                     let length = dps[j] + 1
14                     if length > dps[index] {
15                         dps[index] = length
16                         result = max(result, dps[index])
17                     }
18                 }
19             }
20         }
21 
22         return result
23     }
24 }
复制代码

312ms

复制代码
 1 class Solution {
 2     func lengthOfLIS(_ nums: [Int]) -> Int {
 3          var length_global = 0
 4     var length_current = [Int].init(repeating:1 , count: nums.count)
 5     
 6     for i in 0..<nums.count {
 7         for j in 0..<i {
 8             if nums[i] > nums[j] {
 9                 length_current[i] = max(length_current[i], length_current[j] + 1)
10             }
11         }
12         length_global = max(length_global, length_current[i])
13     }
14     
15     return length_global
16     }
17 }
复制代码

376ms

复制代码
 1 class Solution {
 2     func lengthOfLIS(_ nums: [Int]) -> Int {
 3         guard !nums.isEmpty else {
 4             return 0
 5         }
 6         
 7         var dps = Array(repeating: 1, count: nums.count)
 8         var result = 1
 9         for index in 1..<nums.count {
10             let num = nums[index]
11             for j in 0..<index where num > nums[j] {
12                 let length = dps[j] + 1
13                 dps[index] = max(length, dps[index])
14                 result = max(result, dps[index])
15             }
16         }
17 
18         return result
19     }
20 }
复制代码

388ms

复制代码
 1 class Solution {
 2     func lengthOfLIS(_ nums: [Int]) -> Int {
 3         
 4         if nums.count == 0 {
 5             return 0
 6         }
 7         
 8         var result = 1
 9         var dArr = [Int](repeating: 1, count: nums.count)
10         
11         for i in 0..<nums.count {
12 
13             for j in 0..<i {
14                 
15                 if(nums[j] < nums[i] && (dArr[j] + 1 >= dArr[i])) {
16                     dArr[i] = dArr[j] + 1
17                 }
18             }
19             result = dArr[i] > result ? dArr[i] : result
20         }
21         return result
22     }
23 }
复制代码

 

posted @   为敢技术  阅读(297)  评论(0编辑  收藏  举报
编辑推荐:
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· 没有源码,如何修改代码逻辑?
阅读排行:
· 全程不用写代码,我用AI程序员写了一个飞机大战
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· DeepSeek 开源周回顾「GitHub 热点速览」
· 记一次.NET内存居高不下排查解决与启示
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了
点击右上角即可分享
微信分享提示
哥伦布
09:09发布
哥伦布
09:09发布
3°
多云
东南风
3级
空气质量
相对湿度
47%
今天
中雨
3°/15°
周三
中雨
3°/13°
周四
小雪
-1°/6°