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.
这段代码的大 O 表示法是什么?
for(int i=0; i<10; ++i) for(int a=0; a<n; ++a){ cout << "*"; cout << endl; }
这个是O(n):外循环的 10 只是一个常数。
O(n)
这O(10*n)是O(n)因为 10 是常数系数。
O(10*n)
最大的哦是:O(10*n) -> O(n)