Python實現環形連結串列詳解
本文例項為大家分享了Python實現環形連結串列的具體程式碼,供大家參考,具體內容如下
我們將單向連結串列的最後一個節點的指標指向連結串列的頭部(第一個節點),那麼就形成了一個環形連結串列。環形節點可以從任意節點開始遍歷其他的節點。
這裡主要實現了環形連結串列節點的遍歷、新增、插入、刪除,反轉。
程式碼如下:
class Player: """節點類""" def __init__(self): """初始化姓名,分數,指標""" self.name = '' self.score = 0 self.next = None def ergodic(head, num=None, is_print=False): """遍歷函式,num是遍歷到哪一個位置序號,is_print是否觸發列印方法""" if head.next is None: return None ptr = head count = 0 while True: count += 1 if is_print: print('No.'+str(count), ptr.name, ptr.score, '--->', ptr.next.name) if count == num: break if ptr.next == head: break ptr = ptr.next return ptr # 返回遍歷完成後的最後一個節點 def invert(x): # x是連結串列的第一個節點 """反轉環形連結串列""" y = x.next # y是x原來的next x.next = ergodic(x) # 將第一個節點的next指向最後一個節點(因為反轉了) while True: # 迴圈反轉後面的所有節點 r = y.next y.next = x if r == head: # r是head說明y已經是原本連結串列的最後一個節點了 return y # 返回y,這個y是反轉後的連結串列的第一個節點 x = y y = r head = Player() ptr = head while True: select = input("(1).新增 (2).檢視 (3).插入 (4).刪除 (5).反轉 (6).離開\n輸入:") if select == "1": # 新增節點 ptr = ergodic(head) # 獲取當前連結串列最後一個節點 if ptr is None: # ptr為None說明當前在新增第一個節點head head.name = input("姓名:") head.score = input("分數:") head.next = head else: # 新增第一個節點之後的節點 next_data = Player() next_data.name = input("姓名:") next_data.score = input("分數:") next_data.next = head ptr.next = next_data elif select == "2": # 遍歷檢視連結串列所有節點 ergodic(head, is_print=True) # 遍歷連結串列,將列印引數設為True elif select == '3': # 向連結串列中任意位置插入節點,位置以序號表示,即第一個節點序號為1,第二個節點序號為2,以此類推 try: num = int(input("請輸入需要插入的節點位置序號:")) # 輸入序號必須是大於0的正整數,如果輸入大於最後一個節點的序號則插入到最後一個節點之後 if num < 1: print("輸入必須為大於0的正整數") continue except ValueError: print("輸入有誤") continue ptr = ergodic(head, num-1) # 獲取需要插入位置的前一個節點 insert_data = Player() insert_data.name = input("姓名:") insert_data.score = input("分數:") insert_data.next = ptr.next ptr.next = insert_data if num == 1: # 如果插入位置是1的話,那麼head將發生變化 head = insert_data elif select == '4': # 刪除連結串列中任意位置的節點 try: num = int(input("請輸入需要刪除的節點位置序號:")) # 輸入序號必須是大於0的正整數,如果輸入大於最後一個節點的序號則刪除最後一個節點 if num < 1: print("輸入必須為大於0的正整數") continue except ValueError: print("輸入有誤") continue ptr = ergodic(head, num - 1) # 獲取需要刪除位置的前一個節點 if ptr == ergodic(head, num): # 輸入序號過大時需要做特殊處理,因為輸入序號過大也代表刪除最後一個節點,那麼這時我需要獲取這最後一個節點的前一個節點 ptr = ergodic(ptr) ptr.next = ptr.next.next if num == 1: # 如果刪除位置是1的話,那麼head將發生變化 head = ptr.next elif select == '5': # 反轉連結串列 new_first = invert(head) # 獲取新的第一個節點 head = new_first # head指向新的第一個節點 print('成功反轉') elif select == '6': print("成功離開") break else: print("輸入錯誤,請重試")
部分執行結果如下:
以上就是本文的全部內容,希望對大家的學習有所幫助。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69901823/viewspace-2900599/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 【圖解連結串列類面試題】環形連結串列圖解面試題
- Python實現單向連結串列詳解Python
- 連結串列找環(python實現)Python
- 環形連結串列II
- 【資料結構】連結串列(單連結串列實現+詳解+原碼)資料結構
- 141. 環形連結串列
- 環形連結串列_相交連結串列_多數元素(java語言)Java
- 【演算法詳解】有環連結串列演算法
- Python實現單連結串列Python
- 連結串列-單連結串列實現
- python3實現連結串列Python
- java環形連結串列約瑟夫環問題筆記Java筆記
- 演算法141. 環形連結串列演算法
- 每日演算法隨筆:環形連結串列演算法
- 資料結構與演算法——連結串列 Linked List(單連結串列、雙向連結串列、單向環形連結串列-Josephu 問題)資料結構演算法
- Python資料結構——連結串列的實現Python資料結構
- 單連結串列實現
- LeetCode-142-環形連結串列 IILeetCode
- Leetcode-142. 環形連結串列 IILeetCode
- 判斷單連結串列是否存在環,判斷兩個連結串列是否相交問題詳解
- 連結串列以及golang介入式連結串列的實現Golang
- Linux核心連結串列-通用連結串列的實現Linux
- Python 連結串列實踐Python
- 資料結構-雙向連結串列(Python實現)資料結構Python
- 每日leetcode——142. 環形連結串列 IILeetCode
- 環形連結串列I、II(含程式碼以及證明)
- FreeRTOS連結串列實現
- 實現雙向連結串列
- C#實現連結串列C#
- python 資料結構之單連結串列的實現Python資料結構
- (超詳細)動手編寫-連結串列(Java實現)Java
- Q22 LeetCode142 環形連結串列LeetCode
- 連結串列(python)Python
- 連結串列面試題(十一)---求帶環單連結串列 環的入口點面試題
- 詳細分析連結串列的資料結構的實現過程(Java 實現)資料結構Java
- java實現連結串列反轉Java
- go 實現單向連結串列Go
- Go實現雙向連結串列Go