1. 首页
  2. 数据库
  3. 其它
  4. Python数据结构实战——链表(LinkedList)

Python数据结构实战——链表(LinkedList)

上传者: 2020-12-22 04:01:11上传 PDF文件 58.8KB 热度 29次
文章目录1.定义结点类2.定义链表类2.1.打印整个链表2.2.获取链表长度2.3.链表头部插入元素2.4.链表尾部插入元素2.5.链表任意位置插入元素2.6.链表任意位置删除元素2.7.链表中插入一堆数据2.8.完整代码+测试 1.定义结点类 class Node: def __init__(self,data=None,next=None): #传入值和指针 self.data = data #data赋值 self.next = next #next赋值 2.定义链表类 class LinkedList:
用户评论