<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
使用python實現雙向迴圈連結串列,供大家參考,具體內容如下
雙向迴圈連結串列: 將所有的資料存放到節點中,每一個節點相連線,首尾連結,
每一個節點中有一個資料儲存區,和兩個連結區,一個連結前一個節點,一個連結下一個節點
雙向連結串列操作
1、連結串列是否為空
2、連結串列的長度
3、遍歷連結串列
4、連結串列頭部新增元素
5、連結串列尾部新增元素
6、連結串列指定位置新增元素
7、連結串列刪除節點
8、查詢節點是否存在
程式碼實現
# Functions 函數宣告 class Node(): """範例化節點類""" def __init__(self, item): self.item = item self.prev = None self.next = None class Linklist(): """ 存放節點類 """ def __init__(self): self.head = None # 1. 連結串列是否為空 def is_empty(self): return self.head == None # 2. 連結串列的長度 def length(self): """ 返回連結串列中所有資料的個數 範例化遊標,遍歷連結串列,使用計數器自增一 空連結串列 """ # 範例化遊標 cur = self.head # 判斷是否為空 if self.is_empty(): return 0 else: # 不為空 # 定義計數 count = 1 while cur.next != self.head: count+=1 cur = cur.next return count pass # 3. 遍歷連結串列 def travel(self): """ 遍歷連結串列 範例化遊標,遍歷連結串列,每次輸出節點的資料 空連結串列 只有頭節點 """ # 範例化遊標 cur = self.head # 判斷是否為空 if self.is_empty(): return None else: # 不為空的情況 while cur.next != self.head: print(cur.item, end=' ') cur = cur.next print(cur.item) pass # 4. 連結串列頭部新增元素 def add(self, item): """ 頭節點新增 範例化節點, """ # 範例化節點 node = Node(item) # 範例化遊標 cur = self.head # 判斷是否為空 if self.is_empty(): node.next = node node.prev = node self.head = node else: # 連結串列不為空的情況 # 只有一個節點的情況 # node.next = self.head node.next = cur node.prev = cur if cur.next == self.head: # print(cur.item) cur.prev = node cur.next = node self.head = node elif cur.next != self.head: pro = self.head while cur.next != self.head: cur = cur.next pro.prev = node cur.next = node self.head = node pass # 5. 連結串列尾部新增元素 def append(self, item): """ 連結串列尾部新增資料 範例化節點,範例化遊標,指向尾部節點,修改指向 連結串列為空 """ # 範例化節點 node = Node(item) # 範例化遊標 cur = self.head if self.is_empty(): self.add(item) else: # 不為空的情況 # 指標指向最後一個節點 self.head.prev = node node.next = self.head while cur.next != self.head: cur = cur.next node.prev = cur cur.next = node pass # 6. 連結串列指定位置新增元素 def insert(self, index, item): """ 指定位置新增資料 範例化節點, 範例化遊標 移動遊標到索引位置,更改指向 輸入索引大小判斷 連結串列是否為空 """ # 範例化節點 node = Node(item) # 範例化遊標 cur = self.head if index <= 0: self.add(item) elif index > (self.length()-1): self.append(item) else: # 中間新增資料 # 宣告計數 count = 0 print(index) while count < index-1: count+=1 cur = cur.next # print(cur.item) node.next = cur.next node.prev = cur cur.next.prev = node cur.next = node pass # 7. 連結串列刪除節點 def remove(self, item): """ 刪除資料 範例化遊標,遍歷連結串列,查詢有沒有改資料 有,對改資料兩側的節點進行指向修改 """ # 範例化遊標 cur = self.head # 判斷是否為空 if self.is_empty(): return None else: # 不為空的情況下 # 如果刪除的是頭節點 if cur.item == item: # 如果只有一個頭節點 if cur.next == self.head: self.head = None else: # self.head = cur.next pro = cur.next while cur.next != self.head: cur = cur.next cur.next = pro pro.prev = cur self.head = pro pass else: while cur.next != self.head: if cur.item == item: # print(cur.item) pro = cur.prev nex = cur.next pro.next = cur.next nex.prev = pro return True else: cur = cur.next # 如果是最後一個節點 if cur.item == item: cur.prev.next = self.head self.head.prev = cur.prev # 8. 查詢節點是否存在 def search(self, item): """ 查詢指定的資料是否存在 範例化遊標 遍歷所有的節點。每個節點中判斷資料是否相等,相等,返回True """ # 範例化遊標 cur = self.head # 判斷是否為空 if self.is_empty(): return None else: # 不為空的情況 # 遍歷所有的節點 while cur.next != self.head: if cur.item == item: return True else: cur = cur.next if cur.item == item: return True pass
測試執行
# 程式的入口 if __name__ == "__main__": a = Linklist() a .add(400) a .add(300) a .add(200) a .add(100) a.append(10) a.append(11) a.add(1) a.insert(30, 12) # 1 100 200 300 400 10 11 12 a.remove(1) # 100 200 300 400 10 11 12 a.remove(12) # 100 200 300 400 10 11 a.remove(400) # # 100 200 300 10 11 a.remove(4000) print(a.search(100)) # True print(a.search(11)) # True print(a.search(111)) # None print(a.is_empty()) # False a.travel() # 100 200 300 10 11 print(a.length()) # 5 pass
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援it145.com。
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45