python单向循环链表原理与实现方法示例


Posted in Python onDecember 03, 2019

本文实例讲述了python单向循环链表原理与实现方法。分享给大家供大家参考,具体如下:

单向循环链表

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

python单向循环链表原理与实现方法示例

操作

  • is_empty() 判断链表是否为空
  • length() 返回链表的长度
  • travel() 遍历
  • add(item) 在头部添加一个节点
  • append(item) 在尾部添加一个节点
  • insert(pos, item) 在指定位置pos添加节点
  • remove(item) 删除一个节点
  • search(item) 查找节点是否存在

实现

# -*- coding:utf-8 -*-
#! python3
class Node(object):
  """节点"""
  def __init__(self, item):
    self.item = item
    self.next = None
class SinCycLinkedlist(object):
  """单向循环链表"""
  def __init__(self):
    self.__head = None
  def is_empty(self):
    """判断链表是否为空"""
    return self.__head == None
  def length(self):
    """返回链表的长度"""
    # 如果链表为空,返回长度0
    if self.is_empty():
      return 0
    count = 1
    cur = self.__head
    while cur.next != self.__head:
      count += 1
      cur = cur.next
    return count
  def travel(self):
    """遍历链表"""
    if self.is_empty():
      return
    cur = self.__head
    print(cur.item,)
    while cur.next != self.__head:
      cur = cur.next
      print(cur.item,)
    print("")
  def add(self, item):
    """头部添加节点"""
    node = Node(item)
    if self.is_empty():
      self.__head = node
      node.next = self.__head
    else:
      # 添加的节点指向_head
      node.next = self.__head
      # 移到链表尾部,将尾部节点的next指向node
      cur = self.__head
      while cur.next != self.__head:
        cur = cur.next
      cur.next = node
      # _head指向添加node的
      self.__head = node
  def append(self, item):
    """尾部添加节点"""
    node = Node(item)
    if self.is_empty():
      self.__head = node
      node.next = self.__head
    else:
      # 移到链表尾部
      cur = self.__head
      while cur.next != self.__head:
        cur = cur.next
      # 将尾节点指向node
      cur.next = node
      # 将node指向头节点_head
      node.next = self.__head
  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.next = cur.next
      cur.next = node
  def remove(self, item):
    """删除一个节点"""
    # 若链表为空,则直接返回
    if self.is_empty():
      return
    # 将cur指向头节点
    cur = self.__head
    pre = None
    while cur.next != self.__head:
      if cur.item == item:
        # 先判断此结点是否是头节点
        if cur == self.__head:
          # 头节点的情况
          # 找尾节点
          rear = self.__head
          while rear.next != self.__head:
            rear = rear.next
          self.__head = cur.next
          rear.next = self.__head
        else:
          # 中间节点
          pre.next = cur.next
        return
      else:
        pre = cur
        cur = cur.next
    # 退出循环,cur指向尾节点
    if cur.item == item:
      if cur == self.__head:
        # 链表只有一个节点
        self.__head = None
      else:
        # pre.next = cur.next
        pre.next = self.__head
  def search(self, item):
    """查找节点是否存在"""
    if self.is_empty():
      return False
    cur = self.__head
    if cur.item == item:
      return True
    while cur.next != self.__head:
      cur = cur.next
      if cur.item == item:
        return True
    return False
if __name__ == "__main__":
  ll = SinCycLinkedlist()
  ll.add(1)
  ll.add(2)
  ll.append(3)
  ll.insert(2, 4)
  ll.insert(4, 5)
  ll.insert(0, 6)
  print("length:", ll.length())
  ll.travel()
  print(ll.search(3))
  print(ll.search(7))
  ll.remove(1)
  print("length:", ll.length())
  ll.travel()

运行结果:

length: 6
6
2
1
4
3
5

True
False
length: 5
6
2
4
3
5

希望本文所述对大家Python程序设计有所帮助。

Python 相关文章推荐
python实现根据图标提取分类应用程序实例
Sep 28 Python
python通过zlib实现压缩与解压字符串的方法
Nov 19 Python
基于Python中capitalize()与title()的区别详解
Dec 09 Python
转换科学计数法的数值字符串为decimal类型的方法
Jul 16 Python
windows7 32、64位下python爬虫框架scrapy环境的搭建方法
Nov 29 Python
实例详解Matlab 与 Python 的区别
Apr 26 Python
Python实现EXCEL表格的排序功能示例
Jun 25 Python
使用selenium和pyquery爬取京东商品列表过程解析
Aug 15 Python
flask框架自定义url转换器操作详解
Jan 25 Python
Python实现实时数据采集新型冠状病毒数据实例
Feb 04 Python
Python 没有main函数的原因
Jul 10 Python
Python tkinter之ComboBox(下拉框)的使用简介
Feb 05 Python
使用 Python 清理收藏夹里已失效的网站
Dec 03 #Python
Python常用模块os.path之文件及路径操作方法
Dec 03 #Python
Python中顺序表原理与实现方法详解
Dec 03 #Python
python双向链表原理与实现方法详解
Dec 03 #Python
Python读取实时数据流示例
Dec 02 #Python
简单了解python元组tuple相关原理
Dec 02 #Python
python实现智能语音天气预报
Dec 02 #Python
You might like
mysql 的 like 问题,超强毕杀记!!!
2007/01/18 PHP
THINKPHP+JS实现缩放图片式截图的实现
2010/03/07 PHP
php printf输出格式使用说明
2010/12/05 PHP
php数组函数序列之each() - 获取数组当前内部指针所指向元素的键名和键值,并将指针移到下一位
2011/10/31 PHP
CI框架自动加载session出现报错的解决办法
2014/06/17 PHP
PHP基于php_imagick_st-Q8.dll实现JPG合成GIF图片的方法
2014/07/11 PHP
PHP微信开发之有道翻译
2016/06/23 PHP
php求今天、昨天、明天时间戳的简单实现方法
2016/07/28 PHP
php中遍历二维数组并以表格的形式输出的方法
2017/01/03 PHP
Jquery动态改变图片IMG的src地址示例
2013/06/25 Javascript
juery框架写的弹窗效果适合新手
2013/11/27 Javascript
使用jQuery重置(reset)表单的方法
2014/05/05 Javascript
javascript中call,apply,bind的用法对比分析
2015/02/12 Javascript
javascript实现漂亮的拖动层,窗口拖拽特效
2015/04/24 Javascript
jQuery Validate表单验证深入学习
2015/12/18 Javascript
js实现商城星星评分的效果
2015/12/29 Javascript
JS失效 提示HTML1114: (UNICODE 字节顺序标记)的代码页 utf-8 覆盖(META 标记)的冲突的代码页 utf-8
2017/06/23 Javascript
详解Node项目部署到云服务器上
2017/07/12 Javascript
微信小程序中button组件的边框设置的实例详解
2017/09/27 Javascript
JavaScript编程设计模式之构造器模式实例分析
2017/10/25 Javascript
详解三种方式在React中解决绑定this的作用域问题并传参
2020/08/18 Javascript
[01:33]一分钟玩转DOTA2第三弹:DOTA2&DotA快捷操作大对比
2014/06/04 DOTA
Python文件处理
2016/02/29 Python
Python 3 实现定义跨模块的全局变量和使用教程
2019/07/07 Python
python程序 创建多线程过程详解
2019/09/23 Python
Python3爬虫中pyspider的安装步骤
2020/07/29 Python
加拿大奢华时装品牌:Mackage
2018/01/10 全球购物
大四毕业生学习总结的自我评价
2013/10/31 职场文书
办理房产证委托书
2014/09/18 职场文书
流动人口婚育证明范本
2014/09/26 职场文书
党的群众路线教育实践活动心得体会(企业)
2014/11/03 职场文书
教师学习群众路线心得体会
2014/11/04 职场文书
三八红旗手事迹材料
2014/12/26 职场文书
朋友聚会开场白
2015/06/01 职场文书
导游词之宿迁乾隆行宫
2019/10/15 职场文书
MongoDB日志切割的三种方式总结
2021/09/15 MongoDB