這篇文章將為大家詳細(xì)講解有關(guān)怎么在python中實(shí)現(xiàn)一個(gè)單向循環(huán)鏈表,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。
創(chuàng)新互聯(lián)公司是一家集網(wǎng)站建設(shè),東寧企業(yè)網(wǎng)站建設(shè),東寧品牌網(wǎng)站建設(shè),網(wǎng)站定制,東寧網(wǎng)站建設(shè)報(bào)價(jià),網(wǎng)絡(luò)營(yíng)銷,網(wǎng)絡(luò)優(yōu)化,東寧網(wǎng)站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強(qiáng)企業(yè)競(jìng)爭(zhēng)力??沙浞譂M足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網(wǎng)需求。同時(shí)我們時(shí)刻保持專業(yè)、時(shí)尚、前沿,時(shí)刻以成就客戶成長(zhǎng)自我,堅(jiān)持不斷學(xué)習(xí)、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實(shí)用型網(wǎng)站。單向循環(huán)鏈表
單鏈表的一個(gè)變形是單向循環(huán)鏈表,鏈表中最后一個(gè)節(jié)點(diǎn)的next域不再為None,而是指向鏈表的頭節(jié)點(diǎn)。
操作
is_empty() 判斷鏈表是否為空
length() 返回鏈表的長(zhǎng)度
travel() 遍歷
add(item) 在頭部添加一個(gè)節(jié)點(diǎn)
append(item) 在尾部添加一個(gè)節(jié)點(diǎn)
insert(pos, item) 在指定位置pos添加節(jié)點(diǎn)
remove(item) 刪除一個(gè)節(jié)點(diǎn)
search(item) 查找節(jié)點(diǎn)是否存在
實(shí)現(xiàn)
# -*- coding:utf-8 -*- #! python3 class Node(object): """節(jié)點(diǎn)""" def __init__(self, item): self.item = item self.next = None class SinCycLinkedlist(object): """單向循環(huán)鏈表""" def __init__(self): self.__head = None def is_empty(self): """判斷鏈表是否為空""" return self.__head == None def length(self): """返回鏈表的長(zhǎng)度""" # 如果鏈表為空,返回長(zhǎng)度0 if self.is_empty(): return 0 count = 1 cur = self.__head while cur.next != self.__head: count += 1 cur = cur.next return count def travel(self): """遍歷鏈表""" if self.is_empty(): return cur = self.__head print(cur.item,) while cur.next != self.__head: cur = cur.next print(cur.item,) print("") def add(self, item): """頭部添加節(jié)點(diǎn)""" node = Node(item) if self.is_empty(): self.__head = node node.next = self.__head else: # 添加的節(jié)點(diǎn)指向_head node.next = self.__head # 移到鏈表尾部,將尾部節(jié)點(diǎn)的next指向node cur = self.__head while cur.next != self.__head: cur = cur.next cur.next = node # _head指向添加node的 self.__head = node def append(self, item): """尾部添加節(jié)點(diǎn)""" node = Node(item) if self.is_empty(): self.__head = node node.next = self.__head else: # 移到鏈表尾部 cur = self.__head while cur.next != self.__head: cur = cur.next # 將尾節(jié)點(diǎn)指向node cur.next = node # 將node指向頭節(jié)點(diǎn)_head node.next = self.__head def insert(self, pos, item): """在指定位置添加節(jié)點(diǎn)""" if pos <= 0: self.add(item) elif pos > (self.length() - 1): self.append(item) else: node = Node(item) cur = self.__head count = 0 # 移動(dòng)到指定位置的前一個(gè)位置 while count < (pos - 1): count += 1 cur = cur.next node.next = cur.next cur.next = node def remove(self, item): """刪除一個(gè)節(jié)點(diǎn)""" # 若鏈表為空,則直接返回 if self.is_empty(): return # 將cur指向頭節(jié)點(diǎn) cur = self.__head pre = None while cur.next != self.__head: if cur.item == item: # 先判斷此結(jié)點(diǎn)是否是頭節(jié)點(diǎn) if cur == self.__head: # 頭節(jié)點(diǎn)的情況 # 找尾節(jié)點(diǎn) rear = self.__head while rear.next != self.__head: rear = rear.next self.__head = cur.next rear.next = self.__head else: # 中間節(jié)點(diǎn) pre.next = cur.next return else: pre = cur cur = cur.next # 退出循環(huán),cur指向尾節(jié)點(diǎn) if cur.item == item: if cur == self.__head: # 鏈表只有一個(gè)節(jié)點(diǎn) self.__head = None else: # pre.next = cur.next pre.next = self.__head def search(self, item): """查找節(jié)點(diǎn)是否存在""" if self.is_empty(): return False cur = self.__head if cur.item == item: return True while cur.next != self.__head: cur = cur.next if cur.item == item: return True return False if __name__ == "__main__": ll = SinCycLinkedlist() ll.add(1) ll.add(2) ll.append(3) ll.insert(2, 4) ll.insert(4, 5) ll.insert(0, 6) print("length:", ll.length()) ll.travel() print(ll.search(3)) print(ll.search(7)) ll.remove(1) print("length:", ll.length()) ll.travel()
運(yùn)行結(jié)果:
length: 6
6
2
1
4
3
5True
False
length: 5
6
2
4
3
5
關(guān)于怎么在python中實(shí)現(xiàn)一個(gè)單向循環(huán)鏈表就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無(wú)理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場(chǎng)景需求。
當(dāng)前文章:怎么在python中實(shí)現(xiàn)一個(gè)單向循環(huán)鏈表-創(chuàng)新互聯(lián)
分享路徑:http://www.rwnh.cn/article28/cepccp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供用戶體驗(yàn)、虛擬主機(jī)、網(wǎng)站建設(shè)、網(wǎng)站內(nèi)鏈、企業(yè)建站、品牌網(wǎng)站制作
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容