Python数据结构与算法(五)--链表

链表

链表的定义:

链表(Linked list)是一种常见的基础数据结构,是一种线性表,但是不像顺序表一样连续存储数据,而是在每一个节点(数据存储单元)里存放下一个节点的位置信息(即地址)。

单项链表

单向链表也叫单链表,是链表中最简单的一种形式,它的每个节点包含两个域,一个信息域(元素域)和一个链接域。这个链接指向链表中的下一个节点,而最后一个节点的链接域则指向一个空值。

  • 表元素域elem用来存放具体的数据。
  • 链接域next用来存放下一个节点的位置(python中的标识)
  • 变量p指向链表的头节点(首节点)的位置,从p出发能找到表中的任意节点。
'''
单向链表单链表的操作
is_empty() 链表是否为空
length() 链表长度
travel() 遍历整个链表
add(item) 链表头部添加元素
append(item) 链表尾部添加元素
insert(pos, item) 指定位置添加元素
remove(item) 删除节点
search(item) 查找节点是否存在'''class Node(object):'''单向链表的节点'''def __init__(self, item):self.elem = itemself.next = Noneclass SingleLinkList(object):'''单链表'''def __init__(self):self.__head = Nonedef is_empty(self):'''链表是否为空'''return self.__head == Nonedef length(self):'''链表长度'''cur = self.__headcount = 0while cur != None:cur = cur.nextcount += 1return countdef travel(self):'''遍历整个链表'''cur = self.__headwhile cur != None:print(cur.elem, end=" ")cur = cur.nextprint("")def add(self, item):'''链表头部添加元素'''node = Node(item)node.next = self.__headself.__head = nodedef append(self, item):'''链表尾部添加元素'''cur = self.__headnode = Node(item)if cur == None:self.__head = nodeelse:while cur.next != None:cur = cur.nextcur.next = nodedef insert(self, pos, item):'''指定位置添加元素'''if pos <= 0:self.add(item)elif pos > (self.length() - 1):self.append(item)else:pre = self.__headcount = 0while count < (pos - 1):count += 1pre = pre.nextnode = Node(item)node.next = pre.nextpre.next = nodedef remove(self, item):'''删除节点'''cur = self.__headpre = Nonewhile cur != None:if cur.elem == item:# 判断是否是第一if pre == None:self.__head = cur.nextelse:pre.next = cur.nextbreakelse:pre = curcur = cur.nextdef search(self, item):'''查找节点是否存在'''cur = self.__headwhile cur != None:if cur.elem == item:return Truecur = cur.nextreturn FalsesingList = SingleLinkList()singList.add("a")
singList.add("b")
singList.append("c")
singList.append("d")
singList.append("e")
singList.append("f")
singList.append("g")print(singList.is_empty())
print(singList.length())
singList.travel()print("search", singList.search(1))singList.remove("b")singList.travel()singList.insert(3, 3)
singList.travel()

单向循环链表

单链表的一个变形是单向循环链表,链表中最后一个节点的next域不再为None,而是指向链表的头节点。

'''
单循环链表
'''
class Node(object):'''单向链表的节点'''def __init__(self, item):self.elem = itemself.next = Noneclass SingleCircleLinkList(object):'''单循环链表'''def __init__(self, node = None):self.__head = nodeif node:node.next = nodedef is_empty(self):'''链表是否为空'''return self.__head == Nonedef length(self):'''链表长度'''cur = self.__headcount = 1while cur.next != self.__head:count += 1cur = cur.nextreturn countdef travel(self):'''遍历整个链表'''cur = self.__headif cur == None:returnelse:while cur.next != self.__head:print(cur.elem, end=" ")cur = cur.nextprint(cur.elem)def add(self, item):'''链表头部添加元素'''cur = self.__headnode = Node(item)if cur == None:self.__head = nodenode.next = nodeelse:while cur.next != self.__head:cur = cur.nextnode.next = cur.nextself.__head = nodecur.next = nodedef append(self, item):'''链表尾部添加元素'''cur = self.__headnode = Node(item)if cur == None:self.__head = nodenode.next = nodeelse:while cur.next != self.__head:cur = cur.nextcur.next = nodenode.next = self.__headdef insert(self, pos, item):'''指定位置添加元素'''if pos <= 0:self.add(item)elif pos > (self.length() - 1):self.append(item)else:count = 0cur = self.__headpre = Nonenode = Node(item)while count < pos:count += 1pre = curcur = cur.nextnode.next = curpre.next = nodedef remove(self, item):'''删除节点''''''注意1、为空2、第一个节点的情况a) 列表只有一个节点b) 列表有多个节点3、在中间的情况'''if self.is_empty():return Nonecur = self.__headpre = Nonewhile cur.next != self.__head:if cur.elem == item:if cur == self.__head:rear = self.__headwhile rear.next != self.__head:rear = rear.nextself.__head = cur.nextrear.next = self.__headelse:pre.next = cur.nextreturnelse:pre = curcur = cur.next# 链表的最后一个元素if cur.elem == item:if pre == None:self.__head = Noneelse:pre.next = self.__headdef search(self, item):'''查找节点是否存在'''cur = self.__headif cur == None:return Falsewhile cur.next != self.__head:if cur.elem == item:return Truecur = cur.nextif cur.elem == item:return Truereturn Falsen = Node("1")
sc = SingleCircleLinkList()sc.add("a")
sc.add("b")
sc.add("c")
sc.add("d")
sc.add("e")
sc.add("f")
sc.append("11")
sc.insert(2, '22')sc.travel()sc.remove('f')
sc.travel()

双向链表

一种更复杂的链表是“双向链表”或“双面链表”。每个节点有两个链接:一个指向前一个节点,当此节点为第一个节点时,指向空值;而另一个指向下一个节点,当此节点为最后一个节点时,指向空值。

'''
双向链表
'''class Node(object):'''节点'''def __init__(self, item):self.elem = itemself.prev = Noneself.next = Noneclass DoubleLinkList(object):'''双向链表'''def __init__(self, node = None):self.__head = nodedef is_empty(self):'''链表是否为空'''return self.__head == Nonedef length(self):'''链表长度'''cur = self.__headcount = 0while cur != None:cur = cur.nextcount += 1return countdef travel(self):'''遍历整个链表'''cur = self.__headwhile cur != None:print(cur.elem, end=" ")cur = cur.nextprint("")def add(self, item):'''链表头部添加元素'''node = Node(item)if self.__head == None:self.__head = nodeelse:node.next = self.__headself.__head.prev = nodeself.__head = nodedef append(self, item):'''链表尾部添加元素'''node = Node(item)cur = self.__headif cur == None:self.__head = nodeelse:while cur.next != None:cur = cur.nextcur.next = nodenode.prev = curdef insert(self, pos, item):'''指定位置添加元素'''if pos <= 0:self.add(item)elif pos > (self.length() - 1):self.append(item)else:node = Node(item)cur = self.__headcount = 0while count < pos:count += 1cur = cur.nextnode.next = curnode.prev = cur.prevcur.prev = nodenode.prev.next = nodedef remove(self, item):'''删除节点'''cur = self.__headwhile cur != None:if cur.elem == item:if cur == self.__head:'''删除第一个元素'''self.__head = cur.nextif cur.next:cur.next.prev = Noneelse:cur.prev.next = cur.nextif cur.next:cur.next.prev = cur.prevreturnelse:cur = cur.nextdef search(self, item):'''查找节点是否存在'''cur = self.__headwhile cur != None:if cur.elem == item:return Truecur = cur.nextreturn Falsedl = DoubleLinkList()print("is_empty = ", dl.is_empty())
print("length  = ", dl.length())
dl.add("aa")
dl.add("bb")
dl.add("cc")
dl.append("dd")
dl.append("ee")dl.travel()# dl.remove("cc")
dl.remove("bb")
dl.remove('ee')
dl.travel()# print(dl.search("1"))dl.insert(0, "00")
dl.insert(2, '22')dl.travel()

 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/553593.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Python数据结构与算法(六)--栈和队列

栈和队列 栈&#xff08;stack&#xff09;&#xff0c;有些地方称为堆栈&#xff0c;是一种容器&#xff0c;可存入数据元素、访问元素、删除元素&#xff0c;它的特点在于只能允许在容器的一端&#xff08;称为栈顶端指标&#xff0c;英语&#xff1a;top&#xff09;进行加…

Python排序算法(一)冒泡排序、选择排序、插入排序

今天总结一下Python中的排序算法。这篇文章有的排序算法是&#xff1a;冒泡排序、选择排序、插入排序。 冒泡排序 先看一下代码。 冒泡排序 def bubble_sort(aList):n len(aList)for i in range(0, n - 1):for j in range(0, n - i - 1):if aList[j] > aList[j 1]:aList…

Python排序算法(二) 快速排序、希尔排序、归并排序

这篇文章有的排序算法是&#xff1a;快速排序、希尔排序、归并排序。 快速排序 快速排序 def quick_sort(aList, first, last):if first > last:returnmin_val aList[first]low_index firsthight_index lastwhile low_index < hight_index:# hight 左移动while low_i…

python二分法查找

常见的搜索方法&#xff1a;顺序查找、二分法查找、二叉树查找、哈希查找。 二分法查找 二分查找又称折半查找&#xff0c;优点是比较次数少&#xff0c;查找速度快&#xff0c;平均性能好&#xff1b;其缺点是要求待查表为有序表&#xff0c;且插入删除困难。因此&#xff0…

【Python学习笔记】Python深拷贝和浅拷贝

Python中copy模块里面常用的两个方法copy.copy() 和copy.deepcopy()也就是浅拷贝和深拷贝 1、copy.deepcopy() 深拷贝&#xff0c;是对于一个对象所有层次的拷贝。 2、copy.copy()浅拷贝&#xff0c;一般来说是对最顶层对象的拷贝。另外浅拷贝对不可变类型&#xff08;如&…

Python装饰器(一)

要学习装饰器&#xff0c;首先要知道闭包的东西。不过这里不再说闭包的东西了。 我们假设一个场景&#xff1a;假如在公司有多个开发部门&#xff0c;A、B....。现在A部门开发出了一个功能&#xff0c;然后其他部门去调用A部门开发的功能。 比如: 如下f1、f2...&#xff0c;是…

Python装饰器(二)

想再说一下装饰器的使用和原理。 之前已经说了装饰器的概念&#xff0c;和语法&#xff0c;这里想再进一步说一下几个装饰器的例子。 例子一&#xff1a; def makBlod(fn):def wrappen():return "<b>" fn() "</b>"return wrappendef makI…

Chrome浏览器隐藏扩展插件图标

隐藏Chrome浏览器扩展插件的图标。 隐藏之后 把鼠标移动到 上面显示那个红色的位置就可以拖动鼠标&#xff0c;然后就可以隐藏了。

urllib2.URLError: urlopen error [Errno 111] Connection refused

记录个还没解决的问题。下面爬虫代码是可以执行的&#xff0c;但是在我的Ubuntu的虚拟中刚开始是可以运行的&#xff0c;但是&#xff0c;后来不知道改了什么东西&#xff0c;用urllib2写的爬虫和用scrapy 的爬虫代码都不能运行了&#xff01;&#xff01;。 import urllib2 i…

springMVC,aop管理log4j,把当前session信息和错误信息打印到日志

((((其实还是不太理解aop的正真意义但是这样可以实现想要的了,我的感觉是执行一个方法时首先通过filter( 这个fiter可以不配置,之所以要他是因为在aop切入的方法session消失了,我们要保存是谁在操作就需要他) > aop管理的log4j类,>log4j 来搞定日志的处理)))) 记录一下…

xp/win 7 系统搭建 Java环境

win 7 系统搭建 Java环境 xp系统大同小异 下面是具体的值

原始servlet+hibernate+struts2,从前台到后台的整个过程

现在三大框架的兴起ssh spring springmvc 基于注解式的编程简单方便了开发,但是让我感觉摸不着头绪,框架固然是好,提高了开发效率, 对企业有很大的帮助,框架封装的一些底层的东西让我不知道为什么要这么做,只知道该这么做,编程的路线肯定是简单快捷,趋势就是随便点点拖拖,就是…

Python 文件操作 'w+' 和 'wb'的区别

在文件上传的时候遇到个问题&#xff0c;就是 w 和 wb 在文件上传的时候是否回车。 根据项目的实景情况模拟一下区别。 首先说一下 w 和 wb 的区别 。w 是文本写入&#xff0c;wb是字节写入。 看代码。首先在window 操作系统下。 1.字节 # utf-8# 模拟上传的文件内容 read…

warnings (imported as 'THREE') was not found in 'three'

这个问题还没解决&#xff01; 用Vue.js 重构项目的时候&#xff0c;引入three.js和其他相关的东西的时候会出现上面的警告。今天就说一下这个解决办法&#xff0c;但是我觉得这个方法不一定适用所有的项目。 一、引入THREE 首先用 npm 安装了 three, 然后再项目里面引入了。…

springMVC实体用注解管理,多对多 set集合元素排序问题 解决

实现效果 分类在set集合里不可排序 现要使商家拥有的相同的分来在同一列,需要把set集合里的元素放入list 但是问题是页面是双循环,必须以 . 的形式取集合元素所以需要把list集合声明到实体中,只做临时存储,所以写到dto类,这样就可排序了 我们用一个内部类Collections 的sort ( …

进栈出栈示意图

进栈出栈示意图 12345 一次进栈 可以是54321,21543,32541等, 原理 : 后进先出,先进后出

浏览器与JavaScript(一)

作为web前端工程师&#xff0c;每天都会使用浏览器&#xff0c;所以就想总结下浏览器的知识&#xff0c;下面开始正文&#xff0c;本文的东西都是拿Chrome浏览器来说的。 浏览器是多进程。 我们先打开浏览器然后打开一个页面&#xff0c;这个时候我们并不清楚浏览器在后台为我…

java方法的重载与覆盖的返回值类型

public class A extends B{//下面的是方法的覆盖&#xff08;重写overRiding&#xff09;public void riding(){System.out.println("this is overRiding ");}//下面两个函数是方法的重载(overLoading)&#xff0c;但是返回值类型不同&#xff0c;可以运行public St…

threejs 局部辉光

首先看一下局部辉光的效果。 困扰很久的问题&#xff0c;终于解决了&#xff01;&#xff01;&#xff01; 具体找到解决的方法是看了这里和这里2。也是看了这两个帖子之后才找到解决方法。 这种辉光效果也是用后期处理方法&#xff0c;大家可以先看官网上的这个例子。 rend…