Python实现数据结构线性链表(单链表)算法示例


Posted in Python onMay 04, 2019

本文实例讲述了Python实现数据结构线性链表(单链表)算法。分享给大家供大家参考,具体如下:

初学python,拿数据结构中的线性链表存储结构练练手,理论比较简单,直接上代码。

#!/usr/bin/python
# -*- coding:utf-8 -*-
# Author: Hui
# Date:  2017-10-13
# 结点类,
class Node:
  def __init__(self, data):
    self.data = data      # 数据域
    self.next = None      # 指针域
  def get_data(self):
    return self.data
# 链表类
class List:
  def __init__(self, head):
    self.head = head      # 默认初始化头结点
  def is_empty(self):     # 空链表判断
    return self.get_len() == 0
  def get_len(self):     # 返回链表长度
    length = 0
    temp = self.head
    while temp is not None:
      length += 1
      temp = temp.next
    return length
  def append(self, node):     # 追加结点(链表尾部追加)
    temp = self.head
    while temp.next is not None:
      temp = temp.next
    temp.next = node
  def delete(self, index):      # 删除结点
    if index < 1 or index > self.get_len():
      print "给定位置不合理"
      return
    if index == 1:
      self.head = self.head.next
      return
    temp = self.head
    cur_pos = 0
    while temp is not None:
      cur_pos += 1
      if cur_pos == index-1:
        temp.next = temp.next.next
      temp = temp.next
  def insert(self, pos, node):     # 插入结点
    if pos < 1 or pos > self.get_len():
      print "插入结点位置不合理..."
      return
    temp = self.head
    cur_pos = 0
    while temp is not Node:
      cur_pos += 1
      if cur_pos == pos-1:
        node.next = temp.next
        temp.next =node
        break
      temp = temp.next
  def reverse(self, head):     # 反转链表
    if head is None and head.next is None:
      return head
    pre = head
    cur = head.next
    while cur is not None:
      temp = cur.next
      cur.next = pre
      pre = cur
      cur = temp
    head.next = None
    return pre
  def print_list(self, head):      # 打印链表
    init_data = []
    while head is not None:
      init_data.append(head.get_data())
      head = head.next
    return init_data
if __name__ == '__main__':
  head = Node("head")
  list = List(head)
  print '初始化头结点:\t', list.print_list(head)
  for i in range(1, 10):
    node = Node(i)
    list.append(node)
  print '链表添加元素:\t', list.print_list(head)
  print '链表是否空:\t', list.is_empty()
  print '链表长度:\t', list.get_len()
  list.delete(9)
  print '删除第9个元素:\t',list.print_list(head)
  node = Node("insert")
  list.insert(3, node)
  print '第3个位置插入‘insert'字符串 :\t', list.print_list(head)
  head = list.reverse(head)
  print '链表反转:', list.print_list(head)

执行结果:

Python实现数据结构线性链表(单链表)算法示例

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

Python 相关文章推荐
Python中的exec、eval使用实例
Sep 23 Python
python字典get()方法用法分析
Apr 17 Python
python搜索指定目录的方法
Apr 29 Python
python 实现敏感词过滤的方法
Jan 21 Python
Python使用sqlalchemy模块连接数据库操作示例
Mar 13 Python
python中的单引号双引号区别知识点总结
Jun 23 Python
python利用tkinter实现屏保
Jul 30 Python
Python3简单爬虫抓取网页图片代码实例
Aug 26 Python
pytorch1.0中torch.nn.Conv2d用法详解
Jan 10 Python
python绘制封闭多边形教程
Feb 18 Python
使用Python构造hive insert语句说明
Jun 06 Python
Python jieba结巴分词原理及用法解析
Nov 05 Python
Python实现html转换为pdf报告(生成pdf报告)功能示例
May 04 #Python
Python实现将HTML转成PDF的方法分析
May 04 #Python
Python第三方库face_recognition在windows上的安装过程
May 03 #Python
Python人脸识别第三方库face_recognition接口说明文档
May 03 #Python
Python使用到第三方库PyMuPDF图片与pdf相互转换
May 03 #Python
利用python将图片版PDF转文字版PDF
May 03 #Python
Python3.0中普通方法、类方法和静态方法的比较
May 03 #Python
You might like
Zend Framework过滤器Zend_Filter用法详解
2016/12/09 PHP
json格式化/压缩工具 Chrome插件扩展版
2010/05/25 Javascript
jquery(hide方法)隐藏指定元素实例
2013/11/11 Javascript
JavaScript中判断整数的多种方法总结
2014/11/08 Javascript
AngularJS表单验证中级篇(3)
2016/09/28 Javascript
jquery实现图片上传前本地预览
2017/04/28 jQuery
Vue中计算属性computed的示例解读
2017/07/26 Javascript
详解微信小程序调起键盘性能优化
2018/07/24 Javascript
Vue CLI3 开启gzip压缩文件的方式
2018/09/30 Javascript
JavaScript键盘事件常见用法实例分析
2019/01/03 Javascript
详解Node.JS模块 process
2020/08/31 Javascript
js实现验证码干扰(静态)
2021/02/22 Javascript
python基础教程之字典操作详解
2014/03/25 Python
Python中的defaultdict模块和namedtuple模块的简单入门指南
2015/04/01 Python
Python计算两个日期相差天数的方法示例
2017/05/23 Python
Python实现KNN邻近算法
2021/01/28 Python
Python使用grequests(gevent+requests)并发发送请求过程解析
2019/09/25 Python
三个python爬虫项目实例代码
2019/12/28 Python
python使用信号量动态更新配置文件的操作
2020/04/01 Python
Django基于客户端下载文件实现方法
2020/04/21 Python
解决Jupyter notebook中.py与.ipynb文件的import问题
2020/04/21 Python
pytorch SENet实现案例
2020/06/24 Python
Python 中如何写注释
2020/08/28 Python
HTML5无刷新改变当前url的代码
2017/03/15 HTML / CSS
英国天然宝石首饰购买网站:Gemondo Jewellery
2018/10/23 全球购物
Kendra Scott官网:美国领先的时尚配饰品牌
2020/10/22 全球购物
通息工程毕业生自荐信
2013/10/16 职场文书
司机的工作范围及职责
2013/11/13 职场文书
小学生个人先进事迹材料
2014/05/08 职场文书
大学生就业协议书范本(适用于公司企业)
2014/10/07 职场文书
车间主任岗位职责范本
2015/04/08 职场文书
施工单位工程部经理岗位职责
2015/04/09 职场文书
签约仪式致辞
2015/07/30 职场文书
六种css3实现的边框过渡效果
2021/04/22 HTML / CSS
sql通过日期判断年龄函数的示例代码
2021/07/16 SQL Server
Vue中Object.assign清空数据报错的解决方案
2022/03/03 Vue.js