while循环的时间复杂度[关闭]

问题描述 投票:-7回答:1

以下代码段的最佳案例,最坏情况和平均案例情景是什么? def sumInts(n): Count = 0 while i < n: Count = count + n Return count

python python-3.x while-loop time-complexity big-o
1个回答
4
投票

它没有运行,因为既没有定义i也没有定义count

换句话说:最好的情况:崩溃,最坏情况:崩溃,平均情况:崩溃。

© www.soinside.com 2019 - 2024. All rights reserved.