python實(shí)現(xiàn)雙鏈表
本文實(shí)例為大家分享了python實(shí)現(xiàn)雙鏈表的具體代碼,供大家參考,具體內(nèi)容如下
實(shí)現(xiàn)雙鏈表需要注意的地方
1、如何插入元素,考慮特殊情況:頭節(jié)點(diǎn)位置,尾節(jié)點(diǎn)位置;一般情況:中間位置
2、如何刪除元素,考慮特殊情況:頭結(jié)點(diǎn)位置,尾節(jié)點(diǎn)位置;一般情況:中間位置
代碼實(shí)現(xiàn)
1.構(gòu)造節(jié)點(diǎn)的類和鏈表類
class Node: ? ? def __init__(self, data): ? ? ? ? self.data = data ? ? ? ? self.next = None ? ? ? ? self.previous = None class DoubleLinkList: ? ? '''雙鏈表''' ? ? def __init__(self, node=None): ? ? ? ? self._head = node
以下方法均在鏈表類中實(shí)現(xiàn)
2. 判斷鏈表是否為空
def is_empty(self): ? ? ? ? return self._head is None
3. 輸出鏈表的長(zhǎng)度
def length(self): ? ? ? ? count = 0 ? ? ? ? if self.is_empty(): ? ? ? ? ? ? return count ? ? ? ? else: ? ? ? ? ? ? current = self._head ? ? ? ? ? ? while current is not None: ? ? ? ? ? ? ? ? count += 1 ? ? ? ? ? ? ? ? current = current.next ? ? ? ? return count
4. 遍歷鏈表
def travel(self):
? ? ? ? current = self._head
? ? ? ? while current is not None:
? ? ? ? ? ? print("{0}".format(current.data), end=" ")
? ? ? ? ? ? current = current.next
? ? ? ? print("")5.頭插法增加新元素
def add(self, item): ? ? ? ? node = Node(item) ? ? ? ? # 如果鏈表為空,讓頭指針指向當(dāng)前節(jié)點(diǎn) ? ? ? ? if self.is_empty(): ? ? ? ? ? ? self._head = node ? ? ? ? # 注意插入的順序, ? ? ? ? else: ? ? ? ? ? ? node.next = self._head ? ? ? ? ? ? self._head.previous = node ? ? ? ? ? ? self._head = node
6. 尾插法增加新元素
def append(self, item): ? ? ? ? node = Node(item) ? ? ? ? # 如果鏈表為空,則直接讓頭指針指向該節(jié)點(diǎn) ? ? ? ? if self.is_empty(): ? ? ? ? ? ? self._head = node ? ? ? ? # 需要找到尾節(jié)點(diǎn),然后讓尾節(jié)點(diǎn)的與新的節(jié)點(diǎn)進(jìn)行連接 ? ? ? ? else: ? ? ? ? ? ? current = self._head ? ? ? ? ? ? while current.next is not None: ? ? ? ? ? ? ? ? current = current.next ? ? ? ? ? ? current.next = node ? ? ? ? ? ? node.previous = current
7. 查找元素是否存在鏈表中
def search(self, item): ? ? ? ? current = self._head ? ? ? ? found = False ? ? ? ? while current is not None and not found: ? ? ? ? ? ? if current.data == item: ? ? ? ? ? ? ? ? found = True ? ? ? ? ? ? else: ? ? ? ? ? ? ? ? current = current.next ? ? ? ? return found
8. 在某個(gè)位置中插入元素
def insert(self, item, pos): ? ? ? ? # 特殊位置,在第一個(gè)位置的時(shí)候,頭插法 ? ? ? ? if pos <= 0: ? ? ? ? ? ? self.add(item) ? ? ? ? # 在尾部的時(shí)候,使用尾插法 ? ? ? ? elif pos > self.length() - 1: ? ? ? ? ? ? self.append(item) ? ? ? ? # 中間位置 ? ? ? ? else: ? ? ? ? ? ? node = Node(item) ? ? ? ? ? ? current = self._head ? ? ? ? ? ? count = 0 ? ? ? ? ? ? while count < pos - 1: ? ? ? ? ? ? ? ? current = current.next ? ? ? ? ? ? ? ? count += 1 ? ? ? ? ? ? # 找到了要插入位置的前驅(qū)之后,進(jìn)行如下操作 ? ? ? ? ? ? node.previous = current ? ? ? ? ? ? node.next = current.next ? ? ? ? ? ? current.next.previous = node ? ? ? ? ? ? current.next = node

?# 換一個(gè)順序也可以進(jìn)行 def insert2(self, item, pos): ? ? ? ? if pos <= 0: ? ? ? ? ? ? self.add(item) ? ? ? ? elif pos > self.length() - 1: ? ? ? ? ? ? self.append(item) ? ? ? ? else: ? ? ? ? ? ? node = Node(item) ? ? ? ? ? ? current = self._head ? ? ? ? ? ? count = 0 ? ? ? ? ? ? while count < pos: ? ? ? ? ? ? ? ? current = current.next ? ? ? ? ? ? ? ? count += 1 ? ? ? ? ? ? node.next = current ? ? ? ? ? ? node.previous = current.previous ? ? ? ? ? ? current.previous.next = node ? ? ? ? ? ? current.previous = node
9. 刪除元素
def remove(self, item):
? ? ? ? current = self._head
? ? ? ? if self.is_empty():
? ? ? ? ? ? return
? ? ? ? elif current.data == item:
? ? ? ? ? ? # 第一個(gè)節(jié)點(diǎn)就是目標(biāo)節(jié)點(diǎn),那么需要將下一個(gè)節(jié)點(diǎn)的前驅(qū)改為None 然后再將head指向下一個(gè)節(jié)點(diǎn)
? ? ? ? ? ? current.next.previous = None
? ? ? ? ? ? self._head = current.next
? ? ? ? else:
? ? ? ? ? ? # 找到要?jiǎng)h除的元素節(jié)點(diǎn)
? ? ? ? ? ? while current is not None and current.data != item:
? ? ? ? ? ? ? ? current = current.next
? ? ? ? ? ? if current is None:
? ? ? ? ? ? ? ? print("not found {0}".format(item))
? ? ? ? ? ? # 如果尾節(jié)點(diǎn)是目標(biāo)節(jié)點(diǎn),讓前驅(qū)節(jié)點(diǎn)指向None
? ? ? ? ? ? elif current.next is None:
? ? ? ? ? ? ? ? current.previous.next = None
? ? ? ? ? ? # 中間位置,因?yàn)槭请p鏈表,可以用前驅(qū)指針操作
? ? ? ? ? ? else:
? ? ? ? ? ? ? ? current.previous.next = current.next
? ? ? ? ? ? ? ? current.next.previous = current.previous# 第二種寫法 ? ? def remove2(self, item): ? ? ? ? """刪除元素""" ? ? ? ? if self.is_empty(): ? ? ? ? ? ? return ? ? ? ? else: ? ? ? ? ? ? cur = self._head ? ? ? ? ? ? if cur.data == item: ? ? ? ? ? ? ? ? # 如果首節(jié)點(diǎn)的元素即是要?jiǎng)h除的元素 ? ? ? ? ? ? ? ? if cur.next is None: ? ? ? ? ? ? ? ? ? ? # 如果鏈表只有這一個(gè)節(jié)點(diǎn) ? ? ? ? ? ? ? ? ? ? self._head = None ? ? ? ? ? ? ? ? else: ? ? ? ? ? ? ? ? ? ? # 將第二個(gè)節(jié)點(diǎn)的prev設(shè)置為None ? ? ? ? ? ? ? ? ? ? cur.next.prev = None ? ? ? ? ? ? ? ? ? ? # 將_head指向第二個(gè)節(jié)點(diǎn) ? ? ? ? ? ? ? ? ? ? self._head = cur.next ? ? ? ? ? ? ? ? return ? ? ? ? ? ? while cur is not None: ? ? ? ? ? ? ? ? if cur.data == item: ? ? ? ? ? ? ? ? ? ? # 將cur的前一個(gè)節(jié)點(diǎn)的next指向cur的后一個(gè)節(jié)點(diǎn) ? ? ? ? ? ? ? ? ? ? cur.prev.next = cur.next ? ? ? ? ? ? ? ? ? ? # 將cur的后一個(gè)節(jié)點(diǎn)的prev指向cur的前一個(gè)節(jié)點(diǎn) ? ? ? ? ? ? ? ? ? ? cur.next.prev = cur.prev ? ? ? ? ? ? ? ? ? ? break ? ? ? ? ? ? ? ? cur = cur.next
10. 演示
my_list = DoubleLinkList()
print("add操作")
my_list.add(98)
my_list.add(99)
my_list.add(100)
my_list.travel()
print("{:#^50}".format(""))
print("append操作")
my_list.append(86)
my_list.append(85)
my_list.append(88)
my_list.travel()
print("{:#^50}".format(""))
print("insert2操作")
my_list.insert2(66, 3)
my_list.insert2(77, 0)
my_list.insert2(55, 10)
my_list.travel()
print("{:#^50}".format(""))
print("insert操作")
my_list.insert(90, 4)
my_list.insert(123, 5)
my_list.travel()
print("{:#^50}".format(""))
print("search操作")
print(my_list.search(100))
print(my_list.search(1998))
print("{:#^50}".format(""))
print("remove操作")
my_list.remove(56)
my_list.remove(123)
my_list.remove(77)
my_list.remove(55)
my_list.travel()
print("{:#^50}".format(""))
print("remove2操作")
my_list.travel()
my_list.remove2(100)
my_list.remove2(99)
my_list.remove2(98)
my_list.travel()
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
python自動(dòng)發(fā)微信監(jiān)控報(bào)警
這篇文章主要為大家詳細(xì)介紹了python自動(dòng)發(fā)微信監(jiān)控報(bào)警,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2019-09-09
python通過apply使用元祖和列表調(diào)用函數(shù)實(shí)例
這篇文章主要介紹了python通過apply使用元祖和列表調(diào)用函數(shù),實(shí)例分析了python中apply方法的使用技巧,需要的朋友可以參考下2015-05-05
Python+wxPython實(shí)現(xiàn)文件名批量處理
在日常的文件管理中,我們經(jīng)常需要對(duì)文件進(jìn)行批量處理以符合特定的命名規(guī)則或需求,本文主要介紹了如何使用wxPython進(jìn)行文件夾中文件名的批量處理,需要的可以參考下2024-04-04
python機(jī)器學(xué)習(xí)實(shí)戰(zhàn)之最近鄰kNN分類器
這篇文章主要介紹了python機(jī)器學(xué)習(xí)實(shí)戰(zhàn)之最近鄰kNN分類器,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2017-12-12
Python人臉檢測(cè)實(shí)戰(zhàn)之疲勞檢測(cè)
本文主要介紹了實(shí)現(xiàn)疲勞檢測(cè):如果眼睛已經(jīng)閉上了一段時(shí)間,我們會(huì)認(rèn)為他們開始打瞌睡并發(fā)出警報(bào)來喚醒他們并引起他們的注意。感興趣的朋友可以了解一下2021-12-12
Python基于wxPython和FFmpeg開發(fā)一個(gè)視頻標(biāo)簽工具
在當(dāng)今數(shù)字媒體時(shí)代,視頻內(nèi)容的管理和標(biāo)記變得越來越重要,無論是研究人員需要對(duì)實(shí)驗(yàn)視頻進(jìn)行時(shí)間點(diǎn)標(biāo)記,還是個(gè)人用戶希望對(duì)家庭視頻進(jìn)行分類整理,一個(gè)高效的視頻標(biāo)簽工具都是不可或缺的,本文將詳細(xì)分析一個(gè)基于Python、wxPython和FFmpeg開發(fā)的視頻標(biāo)簽工具2025-04-04
pycharm 設(shè)置項(xiàng)目的根目錄教程
今天小編就為大家分享一篇pycharm 設(shè)置項(xiàng)目的根目錄教程,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過來看看吧2020-02-02

