您好,登錄后才能下訂單哦!
這篇文章主要介紹了python中的單向鏈表怎么實現(xiàn)的相關(guān)知識,內(nèi)容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇python中的單向鏈表怎么實現(xiàn)文章都會有所收獲,下面我們一起來看看吧。
單向鏈表的鏈接方向是單向的,由結(jié)點構(gòu)成,head指針指向第一個成為head結(jié)點,而終止于最后一個指向None的指針,對鏈表的訪問要通過順序讀取從頭部開始。
class Node: def __init__(self,data): self.data = data #節(jié)點的值域 self.next = None #連接下一個節(jié)點,暫時指向空
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) #新建一個節(jié)點 node.next = self.head #新建的節(jié)點接上原來的鏈表 self.head = node #重置鏈表的頭
def addtail(self,data): node = Node(data) #新建一個節(jié)點 #先判斷鏈表是否為空 if self.isEmpty(): self.addhead(data) else: t = self.head while t.next: #通過循環(huán)找到尾部 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) #創(chuàng)建鏈表 addlist = linkList.addhead(5) #在頭節(jié)點加入 linkList.ergodic() #遍歷輸出 addlist = linkList.addtail(5) #在尾節(jié)點加入 linkList.ergodic() #遍歷輸出 linkList.search(5) #查找是否有"5"的節(jié)點 linkList.delete(4) #刪除第4個數(shù)據(jù) linkList.ergodic() #遍歷輸出 print(linkList.length()) #輸出鏈表長度 linkList.insert(89,2) #指定位置插入數(shù)據(jù) linkList.ergodic() #遍歷輸出
關(guān)于“python中的單向鏈表怎么實現(xiàn)”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對“python中的單向鏈表怎么實現(xiàn)”知識都有一定的了解,大家如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。