Re: [問題] sort的時間複雜度

看板Prob_Solve (計算數學 Problem Solving)作者 ( )時間12年前 (2012/02/05 09:14), 編輯推噓1(109)
留言10則, 3人參與, 最新討論串2/2 (看更多)
※ 引述《mqazz1 (無法顯示)》之銘言: : SORT(A, i, j) : { : if A[i] > A[j] : then exchange A[i] and A[j] : if ( (i+1) <= j ) >= : then return : k = (j-i+1)/3 : SORT(A, i, j-k) : SORT(A, i+k, j) : SORT(A, i, j-k) : } : 請問這個SORT在worst case下 : 時間複雜度的遞迴式要怎麼導呢? : 謝謝 We can notice that the algorithm split the array into three approximately equal size aparts. So T(n) = 3T(2n/3) + Θ(1) By applying the Master Theorem we see that T(n) = Θ(n^2) -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 61.217.33.242

02/05 20:09, , 1F
謝謝 可以請問3T(2n/3)是怎麼來的嗎?
02/05 20:09, 1F

02/05 21:40, , 2F
WIKI上看一下吧 就用k導出來了而已
02/05 21:40, 2F

02/05 21:50, , 3F
另外我個人覺得這題應該只能導big O吧 theta有點太過
02/05 21:50, 3F

02/05 21:51, , 4F
而且答案應該會比n^2大一點
02/05 21:51, 4F

02/05 22:01, , 5F
畢竟他是問最差
02/05 22:01, 5F

02/06 20:45, , 6F
我化簡錯了 這答案錯了
02/06 20:45, 6F

02/06 21:37, , 7F
不過不能導theta?
02/06 21:37, 7F

02/06 22:47, , 8F
n^{log3/(log3 - log2)} .. 不過為什麼不能用theta @@
02/06 22:47, 8F

02/06 23:25, , 9F
可以用... 只是題目問最差 給他的UPPER就差不多了
02/06 23:25, 9F

02/06 23:27, , 10F
只是以改考卷人立場而以
02/06 23:27, 10F
文章代碼(AID): #1FBTVw9p (Prob_Solve)
討論串 (同標題文章)
本文引述了以下文章的的內容:
完整討論串 (本文為第 2 之 2 篇):
文章代碼(AID): #1FBTVw9p (Prob_Solve)