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.
(a)最悪の場合、(b)最良の場合、および(c)単純な除算を行う次の関数の平均的な場合の複雑さは何ですか
while n>=1 do n=n DIV 2 end {while}
複雑さをどのように正当化しますか?
関数は、正確に反復O(log n)する必要があるためです。floor(log2(n)) + 1
O(log n)
floor(log2(n)) + 1