91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python中的單向鏈表怎么實現

發布時間:2022-02-07 15:58:03 來源:億速云 閱讀:146 作者:iii 欄目:開發技術

這篇文章主要介紹了python中的單向鏈表怎么實現的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇python中的單向鏈表怎么實現文章都會有所收獲,下面我們一起來看看吧。

一、單向鏈表概念

單向鏈表的鏈接方向是單向的,由結點構成,head指針指向第一個成為head結點,而終止于最后一個指向None的指針,對鏈表的訪問要通過順序讀取從頭部開始。

python中的單向鏈表怎么實現

二、建立節點對象

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中的單向鏈表怎么實現”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“python中的單向鏈表怎么實現”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

洮南市| 永寿县| 涪陵区| 桃园市| 凉城县| 华亭县| 武汉市| 彭水| 松阳县| 景宁| 伊金霍洛旗| 西吉县| 尤溪县| 赤水市| 白朗县| 安庆市| 弋阳县| 神农架林区| 牡丹江市| 宁都县| 重庆市| 临高县| 平塘县| 五家渠市| 常熟市| 克什克腾旗| 会同县| 峡江县| 铜陵市| 房产| 米易县| 即墨市| 岫岩| 安宁市| 张家界市| 军事| 沂源县| 海兴县| 习水县| 西盟| 绥滨县|