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.
このアルゴリズムの実行時間を計算するにはどうすればよいでしょうか。将来同様の問題を解決できるようになりますか?
入力サイズ n は再帰関係を満たします (n>= 1 の場合)
T(n) = (2/n) * (T(0) + T(1) + ... + T(n-1)) + 5n