python 多维list 排序_python实现数据结构与算法之双向链表

本文介绍了双向链表的概念、节点结构,并提供了Python代码实现,包括链表的基本操作如添加、删除元素等。此外,文章还提及了与Python多维list排序相关的数据结构和算法知识。
摘要由CSDN通过智能技术生成

20a2447bf1a87bb89cbefe0f5a72e3b5.png

双向链表定义

双向链表(Double Linked List)是一种更复杂的链表,每个节点除了包含元素域,还包含两个链接:一个指向前一个节点,当此节点为第一个节点时,指向空值;另一个指向下一个节点,当此节点为最后一个节点时,指向空值。

节点示意图

713d40ce07cc60ec3d90368b4d98f86b.png

双向链表节点示意图

  • 表元素域elem用来存放具体的数据。
  • 链接域prev用来存放上一个节点的位置(python中的标识)
  • 链接域next用来存放下一个节点的位置(python中的标识)

双向链表示意图

478fe4cec70b554e807792a4a5e0b359.png

双向链表示意图

双向链表的基本操作

  • is_empty() 判断链表是否为空
  • length 链表长度
  • travel() 遍历整个链表,打印元素
  • add(item) 在链表头部添加元素
  • append(item) 在链表尾部添加元素
  • insert(pos, item) 在指定位置插入元素
  • remove(item) 删除元素
  • clear() 清空链表
  • is_contain(item) 判断元素是否存在

Python 代码实现

# 节点代码实现

class Node(object):
    """双向链表节点"""
    def __init__(self, item):
        self.item = item
        self.next = None
        self.prev = None
# 双向链表代码实现

class DoubleLinkList(object):
    """双向链表"""
    def __init__(self):
        self._head = None

    def is_empty(self):
        """判断链表是否为空"""
        return self._head is None

    @property
    def length(self):
        """返回链表的长度"""
        cur = self._head
        count = 0
        while cur is not None :
            count += 1
            cur = cur.next
        return count

    def travel(self):
        """遍历链表"""
        cur = self._head
        while cur is not None:
            print(cur.item)
            cur = cur.next
        print("")

    def add(self, item):
        """头部插入元素"""
        node = Node(item)
        if self.is_empty():
            # 如果是空链表,将_head指向node
            self._head = node
        else:
            # 将node的next指向_head的头节点
            node.next = self._head
            # 将_head的头节点的prev指向node
            self._head.prev = node
            # 将_head 指向node
            self._head = node

    def append(self, item):
        """尾部插入元素"""
        node = Node(item)
        if self.is_empty():
            # 如果是空链表,将_head指向node
            self._head = node
        else:
            # 移动到链表尾部
            cur = self._head
            while cur.next is not None:
                cur = cur.next
            # 将尾节点cur的next指向node
            cur.next = node
            # 将node的prev指向cur
            node.prev = cur

    def is_contain(self, item):
        """查找元素是否存在"""
        cur = self._head
        while cur is not None:
            if cur.item == item:
                return True
            cur = cur.next
        return False
    
    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 -1):
                count += 1
                cur = cur.next
            # 将node的prev指向cur
            node.prev = cur
            # 将node的next指向cur的下一个节点
            node.next = cur.next
            # 将cur的下一个节点的prev指向node
            cur.next.prev = node
            # 将cur的next指向node
            cur.next = node
              
    def remove(self, item):
        """删除元素"""
        if self.is_empty():
            return
        else:
            cur = self._head
            if cur.item == item:
                # 如果首节点的元素即是要删除的元素
                if cur.next is None:
                    # 如果链表只有这一个节点
                    self._head = None
                else:
                    # 将第二个节点的prev设置为None
                    cur.next.prev = None
                    # 将_head指向第二个节点
                    self._head = cur.next
                return
            while cur is not None:
                if cur.item == item:
                    # 将cur的前一个节点的next指向cur的后一个节点
                    cur.prev.next = cur.next
                    # 将cur的后一个节点的prev指向cur的前一个节点
                    cur.next.prev = cur.prev
                    break
                cur = cur.next
                
    def clear(self):
        """清空链表"""
        self._head = None
    
    def __len__(self):
        """可以用len()方法获取链表长度"""
        return self.length
    
    def __iter__(self):
        """可以使用循环遍历链表"""
        cur = self._head
        while cur is not None:
            value = cur.item
            cur = cur.next
            yield value
            
    def __contains__(self, item):
        """可以用in判断元素是否在链表中"""
        cur = self._head
        while cur is not None:
            if cur.item == item:
                return True
            cur = cur.next
        return False
# 测试数据

if __name__ == "__main__":
    print("------创建链表------")
    dl_list = DoubleLinkList()
    dl_list.add(1)
    dl_list.add(2)
    dl_list.append(3)
    dl_list.insert(2, 4)
    dl_list.insert(4, 5)
    dl_list.insert(0, 6)
    print("length:",len(dl_list))
    dl_list.travel()
    print(dl_list.is_contain(3))
    print(dl_list.is_contain(8))
    print(3 in dl_list)
    print(8 in dl_list)
    dl_list.remove(1)
    print("length:",len(dl_list))
    dl_list.travel()
    print("------循环遍历------")
    for i in dl_list:
        print(i)
# 输出结果

------创建链表------
length: 6
6
2
1
4
3
5

True
False
True
False
length: 5
6
2
4
3
5

------循环遍历------
6
2
4
3
5

算法分析

b4e5799aac0b8f11bc1c65e609c25ab1.png

联系我们

个人博客网站:http://www.bling2.cn/

Github地址:https://github.com/lb971216008/Use-Python-to-Achieve

知乎专栏:https://zhuanlan.zhihu.com/Use-Python-to-Achieve

小专栏:https://xiaozhuanlan.com/Use-Python-to-Achieve

博客园:https://www.cnblo-to-Achieve

f1e56e8ed3e29c9d51cc6c1cf340ed33.gif

扫码关注公众号,获取更多免费资源~~~

更多内容

  • 专辑——python实现之排序算法

  1. python实现·十大经典排序算法之冒泡排序

  2. python 实现·十大经典排序算法之选择排序

  3. python实现·十大经典排序算法之插入排序

  4. python实现·十大经典排序算法之快速排序

  5. python实现·十大经典排序算法之归并排序

  6. python实现·十大经典排序算法之希尔排序

  7. python实现·十大经典排序算法之堆排序

  8. python实现·十大经典排序算法之计数排序

  9. python实现·十大排序经典算法之基数排序

  10. python实现·十大经典排序算法之桶排序

  • 专辑——python实现之数据结构

  1. Python实现·数据结构与算法之单向链表

  2. python实现·数据结构与算法之单向循环链表

  • 免费资源

  1. Python电子书资源分享(20200605更新)

  2. 好用的软件分享

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值