Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要帮助解决以下问题:
对于 i <- 5 到 m 做 P(i)
其中 P(i) 执行 (mi) 次,前提是 m >= 3
我意识到这是总和
但我不确定如何从中计算运行时间。有什么建议么?
如果您将复杂性计算P(i)为常数,那么您只有循环m - 5时间 - 它会给您带来复杂性O(m)
P(i)
m - 5
O(m)