Python实现双向链表基本操作
作者:蕾欧娜等等 时间:2022-07-22 10:14:12
双向链表的基本操作的实现,供大家参考,具体内容如下
在之前的博客中介绍了三种链表,分别是单链表、单向循环链表以及双向链表。本篇博客将用Python来实现双向链表的如下操作。(用到的工具是Python 3)
is_empty() : 判断链表是否为空
length() : 返回链表的长度
travel() : 遍历
add(item) : 在头部添加一个节点
append(item) : 在尾部添加一个节点
insert(pos, item) : 在指定位置 pos 添加一个节点
remove(item) : 删除一个节点
search(item) : 查找节点是否存在
Python实现
class Node(object):
'''双向链表节点'''
def __init__(self,item):
self.item = item
self.next = None
self.prev = None
class DoubleLink(object):
'''双向链表'''
def __init__(self):
self._head = None
def is_empty(self):
'''判断是否为空'''
return self._head == None
def length(self):
'''返回链表的长度'''
cur = self._head
count = 0
while cur!= None:
count += 1
cur = cur.next
return count
def travel(self):
'''遍历链表'''
cur = self._head
while cur != None:
print(cur.item)
cur = cur.next
print("")
def add(self, item):
'''头部插入元素'''
node = Node(item)
if self.is_empty():
# 如果是空链表,将_head指向None
self._head = node
else:
# 将node的next指向_head的头节点
node.next = self._head
# 将_head的头节点的prev指向node
self._head.prev = node
# 将_head 指向node
self._head = node
def append(self, item):
'''尾部插入元素'''
node = Node(item)
if self.is_empty():
self._head = node
else:
# 移动到链表尾部
cur = self._head
while cur.next != None:
cur = cur.next
# 将尾结点cur的next指向node
cur.next = node
# 将node的prev指向cur
node.prev = cur
def search(self, item):
'''查找元素是否存在'''
cur = self._head
while cur != None:
if cur.item == item:
return True
cur = cur.next
return False
指定位置插入节点
在该操作中,要注意链的指向的先后顺序。
def insert(self, pos, item):
'''在指定位置添加节点'''
if pos <= 0:
self.add(item)
elif pos > (self.length() - 1):
self.append(item)
else:
node = Node()
cur = self._head()
count = 0
# 移动到指定的前一个位置
while cur < pos - 1 :
count += 1
cur = cur.next
# 将node的prev指向cur
node.prev = cur
# 将node的next指向cur的下一个节点
node.next = cur.next
# 将cur的下一个节点的prev指向node
cur.next.prev = node
# 将cur.next指向node
cur.next = node
删除元素
def remove(self, item):
'''删除元素'''
if self.is_empty(): return
else:
cur = self._head
if cur.item == item:
# 如果首节点的元素是要删除的元素
if cur.next == None:
# 如果链表中只有一个节点
self._head = None
else:
cur.next.prev = None
self._head = cur.next
return
while cur != None:
if cur.item == item:
cur.prev.next = cur.next
cur.next.prev = cur.prev
break
cur = cur.next
来源:https://blog.csdn.net/weixin_38746310/article/details/106598545
标签:Python,双向链表
0
投稿
猜你喜欢
如何用python 操作MongoDB数据库
2024-01-27 16:53:10
MySQL触发器学习总结
2024-01-14 10:31:38
python读取TXT每行,并存到LIST中的方法
2023-08-09 06:09:20
Python+Selenium+phantomjs实现网页模拟登录和截图功能(windows环境)
2023-11-17 11:00:43
vsCode安装使用教程和插件安装方法
2024-04-30 09:55:49
IE6局部调用PNG32合并图片
2009-03-11 21:24:00
Python使用Cv2模块识别验证码的操作方法
2022-07-03 14:37:19
Python实现的径向基(RBF)神经网络示例
2022-03-06 23:44:35
Keras中的两种模型:Sequential和Model用法
2021-10-16 07:04:32
Python读写Redis数据库操作示例
2024-01-13 02:09:05
python线程信号量semaphore使用解析
2023-02-08 08:47:24
Access数据库安全问答
2007-08-23 15:28:00
Django model反向关联名称的方法
2021-03-06 17:21:28
Python+PyQt5制作一个图片查看器
2021-03-03 04:16:06
MySQL数据库十大优化技巧
2024-01-25 22:51:28
python 解决动态的定义变量名,并给其赋值的方法(大数据处理)
2021-10-09 10:44:58
如何限制表单textarea的文字输入量
2007-10-06 22:41:00
python函数参数(必须参数、可变参数、关键字参数)
2023-09-17 07:54:28
pandas通过索引进行排序的示例
2021-04-21 04:19:55
python如何使用contextvars模块源码分析
2021-12-03 21:55:21