前曼联助教:拉什福德身边有很多只会恭维的人,他需要真实的声音

没地方娱乐 2024-10-19 01:17:46

还在犹豫什么?好运的机会稍纵即逝!赶紧关注我,一起开启幸运之旅吧!祝您财运亨通,心想事成!

前曼联助教:拉什福德身边有很多只会恭维的人,他需要真实的声音

好的,这是 Python 函数,用于查找给定整数数组中最长严格递增子序列的长度的简单和最优解:

简单解(动态规划)

此方法使用动态规划来找到最长严格递增子序列的长度。它具有 O(n^2) 的时间复杂度,其中 n 是数组的长度。

python

复制

def

longest_increasing_subsequence_simple

(

nums

):

"""

查找给定整数数组中最长严格递增子序列的长度。

Args:

nums: 整数数组。

Returns:

最长严格递增子序列的长度。

"""

if

not

nums:

return

0

n =

len

(nums)

dp = [

1

] * n

# 初始化 dp 数组,所有元素都为 1

for

i

in

range

(

1

, n):

for

j

in

range

(i):

if

nums > nums:

dp =

max

(dp, dp +

1

)

return

max

(dp)

最优解(耐心排序)

此方法使用耐心排序算法来找到最长严格递增子序列的长度。它具有 O(n log n) 的时间复杂度,其中 n 是数组的长度。

python

复制

import

bisect

def

longest_increasing_subsequence_optimal

(

nums

):

"""

使用耐心排序查找给定整数数组中最长严格递增子序列的长度。

Args:

nums: 整数数组。

Returns:

最长严格递增子序列的长度。

"""

if

not

nums:

return

0

tails =

for

num

in

nums:

index = bisect.bisect_left(tails, num)

if

index ==

len

(tails):

tails.append(num)

else

:

tails = num

return

len

(tails)

这两个函数都接受一个整数数组作为输入并返回最长严格递增子序列的长度。简单解更容易理解和实现,但最优解对于大型数组的效率更高。

以下是如何使用这些函数的示例:

python

复制

nums = [

1

,

3

,

2

,

4

,

5

]

length_simple = longest_increasing_subsequence_simple(nums)

print

(

f"简单解的长度:

{length_simple}

"

)

# 输出:4

length_optimal = longest_increasing_subsequence_optimal(nums)

print

(

f"最优解的长度:

{length_optimal}

"

)

# 输出:4

nums = [

10

,

9

,

2

,

5

,

3

,

7

,

101

,

18

]

length_simple = longest_increasing_subsequence_simple(nums)

print

(

f"简单解的长度:

{length_simple}

"

)

# 输出:4

length_optimal = longest_increasing_subsequence_optimal(nums)

print

(

f"最优解的长度:

{length_optimal}

"

)

# 输出:4

本文创作初衷在于传播正能量,无任何侵犯他人权益的意图。如有侵权,请联系我们,我们将积极配合处理。

0 阅读:0

没地方娱乐

简介:感谢大家的关注