python数据结构链表之单向链表(实例讲解)
作者:jingxian 时间:2021-01-17 12:51:19
单向链表
单向链表也叫单链表,是链表中最简单的一种形式,它的每个节点包含两个域,一个信息域(元素域)和一个链接域。这个链接指向链表中的下一个节点,而最后一个节点的链接域则指向一个空值。
表元素域elem用来存放具体的数据。
链接域next用来存放下一个节点的位置(python中的标识)
变量p指向链表的头节点(首节点)的位置,从p出发能找到表中的任意节点。
节点实现
class Node(object):
"""单链表的结点"""
def __init__(self,item):
# item存放数据元素
self.item = item
# next是下一个节点的标识
self.next = None
单链表的操作
is_empty() 链表是否为空
length() 链表长度
travel() 遍历整个链表
add(item) 链表头部添加元素
append(item) 链表尾部添加元素
insert(pos, item) 指定位置添加元素
remove(item) 删除节点
search(item) 查找节点是否存在
单链表的实现
class Singlepnkpst(object):
"""单链表"""
def __init__(self):
self.__head = None
def is_empty(self):
"""判断链表是否为空"""
return self.__head == None
def length(self):
"""链表长度"""
# cur初始时指向头节点
cur = self.__head
count = 0
# 尾节点指向None,当未到达尾部时
while cur != None:
count += 1
# 将cur后移一个节点
cur = cur.next
return count
def travel(self):
"""遍历链表"""
cur = self.__head
while cur != None:
print(cur.item,end = ' ')
cur = cur.next
print("")
头部添加元素
def add(self, item):
"""头部添加元素"""
# 先创建一个保存item值的节点
node = Node(item)
# 将新节点的链接域next指向头节点,即_head指向的位置
node.next = self.__head
# 将链表的头_head指向新节点
self.__head = nod
尾部添加元素
def append(self, item):
"""尾部添加元素"""
node = Node(item)
# 先判断链表是否为空,若是空链表,则将_head指向新节点
if self.is_empty():
self.__head = node
# 若不为空,则找到尾部,将尾节点的next指向新节点
else:
cur = self.__head
while cur.next != None:
cur = cur.next
cur.next = node
指定位置添加元素
def insert(self, pos, item):
"""指定位置添加元素"""
# 若指定位置pos为第一个元素之前,则执行头部插入
if pos <= 0:
self.add(item)
# 若指定位置超过链表尾部,则执行尾部插入
epf pos > (self.length()-1):
self.append(item)
# 找到指定位置
else:
node = Node(item)
count = 0
# pre用来指向指定位置pos的前一个位置pos-1,初始从头节点开始移动到指定位置
pre = self.__head
while count < (pos-1):
count += 1
pre = pre.next
# 先将新节点node的next指向插入位置的节点
node.next = pre.next
# 将插入位置的前一个节点的next指向新节点
pre.next = node
删除节点
def remove(self,item):
"""删除节点"""
cur = self.__head
pre = None
while cur != None:
# 找到了指定元素
if cur.item == item:
# 如果第一个就是删除的节点
if not pre:
# 将头指针指向头节点的后一个节点
self.__head = cur.next
else:
# 将删除位置前一个节点的next指向删除位置的后一个节点
pre.next = cur.next
break
else:
# 继续按链表后移节点
pre = cur
cur = cur.next
查找节点是否存在
def search(self,item):
"""链表查找节点是否存在,并返回True或者False"""
cur = self.__head
while cur != None:
if cur.item == item:
return True
cur = cur.next
return False
标签:python,单向链表,数据结构,链表
0
投稿
猜你喜欢
布局篇(1)—If you love css …
2008-04-16 14:14:00
国内ASP开源建站系统一览
2009-07-10 13:21:00
asp定时生成静态HTML的代码
2010-07-02 12:29:00
python实现m3u8格式转换为mp4视频格式
2021-05-09 00:48:02
Javascript 实现的数独解题算法网页实例
2024-02-26 15:26:16
在Python的框架中为MySQL实现restful接口的教程
2024-01-13 08:09:54
MySQL高可用架构之MHA架构全解
2024-01-25 03:15:23
python 绘制正态曲线的示例
2023-08-22 10:52:14
asp如何刪除客户端的Cookies?
2010-05-18 18:25:00
腾讯网QQ首页诞生的艰辛历程
2008-11-06 11:05:00
历数Firefox2.0对XML处理的改进
2007-11-27 12:41:00
Pytorch-LSTM输入输出参数方式
2021-02-22 18:49:28
python3 tcp的粘包现象和解决办法解析
2022-08-02 02:22:53
微信小程序canvas写字板效果及实例
2024-04-19 09:44:03
python根据出生日期获得年龄的方法
2022-05-22 23:52:46
BootstrapTable+KnockoutJS相结合实现增删改查解决方案(三)两个Viewmodel搞定增删改查
2024-04-28 09:36:56
4个Web图片在线压缩优化工具
2009-10-13 21:02:00
详解python tcp编程
2021-04-30 00:12:46
在Django中实现添加user到group并查看
2021-12-08 21:47:07
pytorch中的model.eval()和BN层的使用
2023-09-21 17:06:10