前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >链表设计 python

链表设计 python

作者头像
SingYi
发布2023-08-23 08:15:13
1250
发布2023-08-23 08:15:13
举报
文章被收录于专栏:Lan小站

单链表

代码语言:javascript
复制
class MyLinkedList:
    def __init__(self, head=None, size=0):
        self.head = head
        self.size = size

    def get(self, index):
        if index >= self.size or not self.head:
            return -1
        cur = self.head
        while index:
            cur = cur.next
            index -= 1
        return cur.val

    def add_at_head(self, val):
        self.head = ListNode(val, self.head)
        self.size += 1

    def add_at_tail(self, val):
        if not self.head:
            self.head = ListNode(val)
        else:
            cur = self.head
            while cur.next:
                cur = cur.next
            cur.next = ListNode(val)
        self.size += 1

    def add_at_index(self, val, index):
        if not index > self.size:
            if index <= 0:
                self.add_at_head(val)
            else:
                cur = self.head
                while index - 1:
                    cur = cur.next
                    index -= 1
                cur.next = ListNode(val, cur.next)
                self.size += 1

    def delete_at_index(self, index):
        if index < self.size:
            if not index:
                self.head = self.head.next
            else:
                cur = self.head
                while index - 1:
                    cur = cur.next
                    index -= 1
                cur.next = cur.next.next
            self.size -= 1
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2023年01月13日,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 单链表
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档