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.
反復/拡張メソッドを使用して次の繰り返しを解決するのを手伝ってくれる人はいますか?
1.T(n)= T(n-1)+ n,T(0)= 1
解決策はこのようにする必要があります
T(k)=T(K-1)+K T(K-1)=T(K-2)+(K-1) ......................