发布网友 发布时间:2023-12-06 21:38
共2个回答
热心网友 时间:2024-03-08 04:07
这个是计算n趋于无穷大时的阶次,因此阶次从低到高的次序为:追答没错,就是这样
热心网友 时间:2024-03-08 04:08
31+1/n是O(1) , 100n + nlog2(n)是O(nlog2(n)), 20log2(2^n) + n^2是O(n^2), 2^n + 89n^3是O(2^n).从低到高的顺序排列是 O(1) <O(nlog2(n))<O(n^2)<O(2^n)