簡單介紹python中的單向連結串列實現
導讀 | 大家好,本篇文章主要講的是python中的單向連結串列實現,感興趣的同學趕快來看一看吧,對你有幫助的話記得收藏一下 |
一、單向連結串列概念
單向連結串列的連結方向是單向的,由結點構成,head指標指向第一個成為head結點,而終止於最後一個指向None的指標,對連結串列的訪問要透過順序讀取從頭部開始。
二、建立節點物件
class Node: def __init__(self,data): self.data = data #節點的值域 self.next = None #連線下一個節點,暫時指向空
三、連結串列物件的初始定義
class linkList: def __init__(self): self.head = None #首先建立連結串列頭,暫時指向空
四、判斷連結串列是否為空
#判斷連結串列是否為空 def isEmpty(self): if self.head: return False else: return True
五、獲取連結串列長度
def length(self): if self.isEmpty(): return 0 else: t = self.head n = 1 while t.next: t = t.next n = n + 1 return n
六、向頭部新增節點
def addhead(self,data): node = Node(data) #新建一個節點 node.next = self.head #新建的節點接上原來的連結串列 self.head = node #重置連結串列的頭
七、向尾部新增節點
def addtail(self,data): node = Node(data) #新建一個節點 #先判斷連結串列是否為空 if self.isEmpty(): self.addhead(data) else: t = self.head while t.next: #透過迴圈找到尾部 t = t.next t.next = node #尾部接上
八、指定位置插入節點
def insert(self,data,index): if index == 0 or self.isEmpty(): self.addhead(data) elif index >= self.length(): self.addtail(data) else: node = Node(data) t = self.head n = 1 while n < index - 1: t = t.next n = n + 1 a = t.next.next t.next = node node.next = a
九、刪除指定位置的節點
def delete(self,index): if self.isEmpty(): print("The linked list is empty") else: t = self.head if index == 0: self.head = t.next elif index == self.length() - 1: n = 1 while n < self.length() - 1: t = t.next n = n + 1 t.next = None elif index > self.length() - 1: print("Out of range") elif index < 0: print("Wrong operation") else: n = 1 while n < index - 1: t = t.next n = n + 1 a = t.next.next t.next = a
十、查詢是否有該資料的節點
def search(self,data): t = self.head n = 1 while t.next: if t.data == data: print(str(n) + " ") t = t.next n = n + 1 if (t.data == data): print(str(n) + " ")
十一、遍歷輸出整個連結串列
def form(self,datalist): self.addhead(datalist[0]) for i in range(1,len(datalist)): self.addtail(datalist[i]) t = self.head while t.next: print(t.data) t = t.next print(t.data)
十二、輸入資料建立連結串列
def form(self,datalist): self.addhead(datalist[0]) for i in range(1,len(datalist)): self.addtail(datalist[i]) t = self.head while t.next: print(t.data) t = t.next print(t.data)
十三、具體實現
data = input("input(以空格為界):") data = data.split(" ") linkList = linkList() linkList.form(data) #建立連結串列 addlist = linkList.addhead(5) #在頭節點加入 linkList.ergodic() #遍歷輸出 addlist = linkList.addtail(5) #在尾節點加入 linkList.ergodic() #遍歷輸出 linkList.search(5) #查詢是否有"5"的節點 linkList.delete(4) #刪除第4個資料 linkList.ergodic() #遍歷輸出 print(linkList.length()) #輸出連結串列長度 linkList.insert(89,2) #指定位置插入資料 linkList.ergodic() #遍歷輸出
到此這篇關於python中的單向連結串列實現的文章就介紹到這了。
原文來自:
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69955379/viewspace-2855084/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Python實現單向連結串列詳解Python
- go 實現單向連結串列Go
- 單向迴圈連結串列的實現
- 線性表中的單向連結串列的簡單操作
- Python實現單連結串列Python
- 連結串列-單連結串列實現
- 單連結串列實現
- 棧_單向連結串列
- 資料結構-2.單向連結串列的實現資料結構
- 資料結構之php實現單向連結串列資料結構PHP
- 資料結構之連結串列與陣列(3):單向連結串列上的簡單操作資料結構陣列
- Java實現單向連結串列基本功能Java
- 單向迴圈連結串列
- 佇列_單向連結串列佇列
- 單連結串列簡單操作一
- c語言單向連結串列逆轉實現方法C語言
- 資料結構--陣列、單向連結串列、雙向連結串列資料結構陣列
- 資料結構之連結串列與陣列(2):單向連結串列上的簡單操作問題資料結構陣列
- python 資料結構之單連結串列的實現Python資料結構
- c++實現單連結串列C++
- python單連結串列Python
- C語言之單向連結串列C語言
- 單向連結串列介面設計
- 資料結構與演算法——連結串列 Linked List(單連結串列、雙向連結串列、單向環形連結串列-Josephu 問題)資料結構演算法
- 連結a的download屬性簡單介紹
- 用單連結串列實現多項式加,減,乘,簡單微分
- 結構與演算法(03):單向連結串列和雙向連結串列演算法
- 簡單介紹NMS的實現方法
- 連結串列基礎2(超簡單)--單連結串列的插入和刪除
- 實現雙向連結串列
- 單向迴圈連結串列的介面程式
- 演算法與資料結構-連結串列((linked-list)-Java實現單向連結串列演算法資料結構Java
- Oracle中的外連線簡單介紹(轉)Oracle
- 單向迴圈連結串列大綱
- Python簡單介紹Python
- MYSQL INNODB 中通用雙向連結串列的實現MySql
- js實現資料結構--單連結串列JS資料結構
- 資料結構-棧(通過陣列和單向連結串列實現)資料結構陣列