python双向链表原理与实现方法详解
作者:xlengji 时间:2021-03-06 05:29:39
本文实例讲述了python双向链表原理与实现方法。分享给大家供大家参考,具体如下:
双向链表
一种更复杂的链表是“双向链表”或“双面链表”。每个节点有两个链接:一个指向前一个节点,当此节点为第一个节点时,指向空值;而另一个指向下一个节点,当此节点为最后一个节点时,指向空值。
操作
is_empty() 链表是否为空
length() 链表长度
travel() 遍历链表
add(item) 链表头部添加
append(item) 链表尾部添加
insert(pos, item) 指定位置添加
remove(item) 删除节点
search(item) 查找节点是否存在
实现
class Node(object):
"""双向链表节点"""
def __init__(self, item):
self.item = item
self.next = None
self.prev = None
class DLinkList(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指向node
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():
# 如果是空链表,将_head指向node
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(item)
cur = self.__head
count = 0
# 移动到指定位置的前一个位置
while count < (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):
"""删除元素"""
cur = self.__head
while cur != None:
# 找到了要删除的元素
if cur.item == item:
# 先判断此结点是否是头节点
# 头节点
if cur == self.__head:
self.__head = cur.next
# 如果存在下一个结点,则设置下一个结点
if cur.next:
# 判断链表是否只有一个结点
cur.next.prev = None
else:
cur.prev.next = cur.next
# 如果存在下一个结点,则设置下一个结点
if cur.next:
cur.next.prev = cur.prev
break
else:
cur = cur.next
希望本文所述对大家Python程序设计有所帮助。
来源:https://blog.csdn.net/xlengji/article/details/82143101
标签:python,双向链表
0
投稿
猜你喜欢
python颜色随机生成器的实例代码
2022-12-03 19:40:05
SpringSecurity从数据库中获取用户信息进行验证的案例详解
2024-01-23 17:16:25
搭建 Selenium+Python开发环境详细步骤
2022-10-12 17:34:02
谈谈图片如何影响转换率
2011-08-10 19:14:08
Python OpenCV图像指定区域裁剪的实现
2021-12-30 01:41:35
django form和field具体方法和属性说明
2023-07-24 11:22:45
SSB(SQLservice Service Broker) 入门实例介绍
2024-01-27 14:19:00
PyCharm在新窗口打开项目的方法
2023-06-14 23:00:29
Spring Batch读取txt文件并写入数据库的方法教程
2024-01-27 03:59:32
python实现多进程通信实例分析
2023-04-08 19:44:05
Python Pyecharts绘制桑基图分析用户行为路径
2022-06-07 02:47:57
archlinux 罗技K380 F1-F12 功能键锁定(实现方法)
2023-11-27 22:42:48
python实现按键精灵找色点击功能教程,使用pywin32和Pillow库
2023-11-08 18:30:34
网友分享:Oracle数据库开发技术经验浅谈
2009-04-22 13:11:00
Python制作动态词频条形图的全过程
2021-04-25 11:14:52
SQL SERVER中的流程控制语句
2024-01-12 18:25:26
Python使用Matplotlib绘制三维散点图详解流程
2023-09-17 13:36:59
MySQL Packet for query is too large 问题及解决方法
2024-01-29 07:55:52
浅谈Python魔法方法
2022-03-13 01:04:19
怎样使MySQL在攻击者面前保持安全
2008-11-17 20:09:00