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.
T(n) = 4T(n/2) + n
= O(n2)マスター定理を使用。
= O(n2)
上記は以下よりも複雑ですか?
T(n) = 3T(n/4) + n 2
どちらもマスター定理を使っていますが、定数の確認方法がわかりません。O(n2)
O(n2)
ヒント: より簡単な質問: どちらがより複雑ですか? 4N 2または 5N 2