def adjust_heap(res,start,end):
? ? '''
? ? 調(diào)整大頂堆,其中res為待排序堆列表
? ? (為了便于操作res索引,res首位補(bǔ)0,真實(shí)數(shù)據(jù)索引從1開(kāi)始)
? ? '''? ?
? ? i = start
? ? j = 2*i
? ? while j <= end:
? ? ? ? if j < end and res[j] < res[j+1]:
? ? ? ? ? ? j += 1
? ? ? ? if res[i] < res[j]:
? ? ? ? ? ? res[i],res[j] = res[j],res[i]
? ? ? ? ? ? i = j
? ? ? ? ? ? j = 2*i
? ? ? ? else:
? ? ? ? ? ? break
def swap(res,root,last):
? ? '''
? ? 交換根節(jié)點(diǎn)與尾節(jié)點(diǎn)
? ? '''
? ? res[root],res[last] = res[last],res[root]
def sort_heap(res):
? ? '''
? ? 堆排序
? ? '''
? ? res = [0] + res
? ? length = len(res) - 1
? ? last_par = length // 2? # 尋找父節(jié)點(diǎn)
? ? for i in range(last_par):
? ? ? ? adjust_heap(res,last_par - i,length)
? ? for i in range(length - 1):
? ? ? ? swap(res,1,length - i)
? ? ? ? adjust_heap(res,1,length - i - 1)
? ? return res[1:]
res = [50, 16, 30, 10, 60,? 90,? 2, 80, 70]
print(sort_heap(res))
python實(shí)現(xiàn)堆排序
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請(qǐng)結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書(shū)系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請(qǐng)結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書(shū)系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。
相關(guān)閱讀更多精彩內(nèi)容
- "use strict";function _classCallCheck(e,t){if(!(e instanc...
- <center>#1 Two Sum</center> link Description:Given an arr...
- New logo 創(chuàng)作你的創(chuàng)作 免費(fèi)下載 ?這些年,P2P背過(guò)的鍋 180陸繼軍簡(jiǎn)書(shū)作者 2018.02.06 0...
- 二月.琥珀琉璃光——Theend 日子盤(pán)旋在城市上空,一點(diǎn)一點(diǎn)燃燒,化成水晶灰般的羽毛,覆蓋我們年輕的軀體。已成為...