MCPcopy Create free account
hub / github.com/aizk/algorithm-practice / lengthOfLIS

Function lengthOfLIS

dp/0300/main.go:24–45  ·  view source on GitHub ↗

给定一个无序的整数数组,找到其中最长上升子序列的长度。 输入: [10,9,2,5,3,7,101,18] 输出: 4 解释: 最长的上升子序列是 [2,3,7,101],它的长度是 4。 说明: 可能会有多种最长上升子序列的组合,你只需要输出对应的长度即可。 你算法的时间复杂度应该为 O(n2) 。

(nums []int)

Source from the content-addressed store, hash-verified

source not stored for this graph (policy: none)

Callers 1

mainFunction · 0.85

Calls 1

maxFunction · 0.70

Tested by

no test coverage detected