Python数据结构之单链表详解


Posted in Python onSeptember 12, 2017

本文实例为大家分享了Python数据结构之单链表的具体代码,供大家参考,具体内容如下

# 节点类
class Node():
  __slots__=['_item','_next'] # 限定Node实例的属性
  def __init__(self,item):
    self._item = item
    self._next = None # Node的指针部分默认指向None
  def getItem(self):
    return self._item
  def getNext(self):
    return self._next
  def setItem(self,newitem):
    self._item = newitem
  def setNext(self,newnext):
    self._next=newnext

# 单链表
class SingleLinkedList():
  def __init__(self):
    self._head = None #初始化链表为空 始终指向链表的头部
    self._size = 0 # 链表大小

  # 返回链表的大小
  def size(self):
    current = self._head
    count = 0
    while current != None:
      count += 1
      current = current.getNext()
    return count

  # 遍历链表
  def travel(self):
    current = self._head
    while current != None:
      print(current.getItem())
      current = current.getNext()
  # 检查链表是否为空
  def isEmpty(self):
    return self._head == None

  # 在链表前端添加元素
  def add(self,item):
    temp = Node(item) # 创建新的节点
    temp.setNext(self._head) # 新创建的next指针指向_head
    self._head = temp # _head指向新创建的指针

  # 在链表尾部添加元素
  def append(self,item):
    temp = Node(item)
    if self.isEmpty():
      self._head = temp # 若为空表就直接插入
    else:
      current = self._head
      while current.getNext() != None:
        current = current.getNext() # 遍历列表
      current.setNext(temp) # 此时current为链表最后的元素,在末尾插入

  # 检索元素是否在链表中
  def search(self,item):
    current = self._head
    founditem = False
    while current != None and not founditem:
      if current.getItem() == item:
        founditem = True
      else:
        current = current.getNext()
    return founditem

  # 索引元素在表中的位置
  def index(self,item):
    current = self._head
    count = 0
    found = None
    while current != None and not found:
      count += 1
      if current.getItem() == item:
        found = True
      else:
        current = current.getNext()
    if found:
      return count
    else:
      return -1 # 返回-1表示不存在

  # 删除表中的某项元素
  def remove(self,item):
    current = self._head
    pre = None
    while current!=None:
      if current.getItem() == item:
        if not pre:
          self._head = current.getNext()
        else:
          pre.setNext(current.getNext())
        break
      else:
        pre = current
        current = current.getNext()

  # 在链表任意位置插入元素
  def insert(self,pos,item):
    if pos <= 1:
      self.add(item)
    elif pos > self.size():
      self.append(item)
    else:
      temp = Node(item)
      count = 1
      pre = None
      current = self._head
      while count < pos:
        count += 1
        pre = current
        current = current.getNext()
      pre.setNext(temp)
      temp.setNext(current)


if __name__=='__main__':
  a=SingleLinkedList()
  for i in range(1,10):
    a.append(i)
  print('链表的大小',a.size())
  a.travel()
  print(a.search(6))
  print(a.index(5))
  a.remove(4)
  a.travel()
  a.insert(4,100)
  a.travel()

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
python DataFrame 修改列的顺序实例
Apr 10 Python
python Spyder界面无法打开的解决方法
Apr 27 Python
python修改txt文件中的某一项方法
Dec 29 Python
python集合是否可变总结
Jun 20 Python
python配置文件写入过程详解
Oct 19 Python
pytorch 模拟关系拟合——回归实例
Jan 14 Python
打包PyQt5应用时的注意事项
Feb 14 Python
Python API len函数操作过程解析
Mar 05 Python
Python列表去重复项的N种方法(实例代码)
May 12 Python
Python如何执行精确的浮点数运算
Jul 31 Python
python实现图片,视频人脸识别(opencv版)
Nov 18 Python
pandas中DataFrame检测重复值的实现
May 26 Python
python处理Excel xlrd的简单使用
Sep 12 #Python
Python3.6简单操作Mysql数据库
Sep 12 #Python
Python文件和流(实例讲解)
Sep 12 #Python
Anaconda多环境多版本python配置操作方法
Sep 12 #Python
python 随机数使用方法,推导以及字符串,双色球小程序实例
Sep 12 #Python
python监控linux内存并写入mongodb(推荐)
Sep 11 #Python
python学习教程之Numpy和Pandas的使用
Sep 11 #Python
You might like
十大催泪虐心动漫,你能坚持看到第几部?
2020/03/04 日漫
咖啡豆的最常见发酵处理方法,详细了解一下
2021/03/03 冲泡冲煮
PHP文本数据库的搜索方法
2006/10/09 PHP
javascript,php获取函数参数对象的代码
2011/02/03 PHP
PHP最常用的2种设计模式工厂模式和单例模式介绍
2012/08/14 PHP
PHP连接Access数据库的方法小结
2013/06/20 PHP
PHP 简易输出CSV表格文件的方法详解
2013/06/20 PHP
php随机生成数字字母组合的方法
2015/03/18 PHP
PHP获取ttf格式文件字体名的方法示例
2019/03/06 PHP
JavaScript面向对象编程
2008/03/02 Javascript
JavaScript对象模型-执行模型
2008/04/28 Javascript
js随机生成一个验证码
2017/06/01 Javascript
DVA框架统一处理所有页面的loading状态
2017/08/25 Javascript
vue2利用Bus.js如何实现非父子组件通信详解
2017/08/25 Javascript
vue中keep-alive的用法及问题描述
2018/05/15 Javascript
详解vuex中action何时完成以及如何正确调用dispatch的思考
2019/01/21 Javascript
Vue路由守卫之路由独享守卫
2019/09/25 Javascript
微信内置开发 iOS修改键盘换行为搜索的解决方案
2019/11/06 Javascript
微信小程序仿抖音短视频切换效果的实例代码
2020/06/24 Javascript
微信小程序基于高德地图API实现天气组件(动态效果)
2020/10/22 Javascript
[54:17]DOTA2-DPC中国联赛定级赛 RNG vs iG BO3第二场 1月10日
2021/03/11 DOTA
go和python调用其它程序并得到程序输出
2014/02/10 Python
对python借助百度云API对评论进行观点抽取的方法详解
2019/02/21 Python
利用pyshp包给shapefile文件添加字段的实例
2019/12/06 Python
python使用numpy实现直方图反向投影示例
2020/01/17 Python
彻底搞懂python 迭代器和生成器
2020/09/07 Python
python批量提取图片信息并保存的实现
2021/02/05 Python
Html5页面中的返回实现的方法
2018/02/26 HTML / CSS
Tostadora意大利:定制T恤
2019/04/08 全球购物
意大利顶级奢侈品电商:LUISAVIAROMA(支持中文)
2020/05/26 全球购物
单位未婚证明范本
2014/01/18 职场文书
会计专业自我鉴定
2014/02/10 职场文书
征求意见函
2015/06/05 职场文书
高中物理教学反思
2016/02/19 职场文书
redis使用不当导致应用卡死bug的过程解析
2021/07/01 Redis
vue route新窗口跳转页面并且携带与接收参数
2022/04/10 Vue.js