带头循环单链表的实现

博客介绍了带头循环单链表,对比不带头非循环单链表,指出其多了头结点且尾节点指向头结点形成循环,并提及将给出带头循环单链表的语言实现。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

带头循环单链表相较于不带头非循环单链表而言,下图给出了它的示意图,可以看出:它多了一个头结点,还有既然它是循环的,那么它的尾节点就不再指向null了,而是指向头结点。
在这里插入图片描述

  • 以下是带头循环单链表的Java语言实现:
package com.circlelinked;

public interface ICLinked {

    //头插法
    void addFirst(int data);
    //尾插法
    void addLast(int data);
    //任意位置插入,第一个数据节点为0号下标
    boolean addIndex(int index, int data);
    //查找是否包含关键字key是否在单链表当中
    boolean contains(int key);
    //删除第一次出现关键字为key的节点
    int remove(int key);
    //删除所有值为key的节点
    void removeAllKey(int key);
    //得到单链表的长度
    int getLength();
    //打印单链表
    void display();
    //清空单链表以防内存泄漏
    void clear();
    
}
package com.circlelinked;

public class CHeadSingleListImpl implements ICLinked {

    class Node {
        private int data;
        private Node next;

        public Node() {
            this.data = -1;
            this.next = null;
        }

        public Node(int data) {
            this.data = data;
            this.next = null;
        }
    }

    private Node head;

    public CHeadSingleListImpl() {
        this.head = new Node();
        this.head.next = this.head;
    }

    @Override
    public void addFirst(int data) {
        Node node = new Node(data);
        node.next = this.head.next;
        this.head.next = node;
    }

    @Override
    public void addLast(int data) {
        Node node = new Node(data);
        Node cur = this.head;
        while (cur.next != this.head) {
            cur = cur.next;
        }

        node.next = cur.next;
        cur.next = node;
    }

    @Override
    public boolean addIndex(int index, int data) {

        Node cur = this.head;

        if(index < 0 || index > getLength()) {
            return false;
        }

        for (int i = 0; i < index; i++) {
            cur = cur.next;
        }

        //cur就是index位置的前驱
        Node node = new Node(data);
        node.next = cur.next;
        cur.next = node;

        return true;
    }

    @Override
    public boolean contains(int key) {

        Node cur = this.head.next;
        while (cur != this.head) {
            if (cur.data != key) {
                cur = cur.next;
            }
            return true;
        }
        return false;
    }


    private Node searchPre(int key) {

        Node pre = this.head;
        while (pre.next != this.head) {
            if (pre.next.data != key) {
                pre = pre.next;
            }
            return pre;
        }
        return null;
    }


    @Override
    public int remove(int key) {

        Node pre = searchPre(key);
        int oldData = 0;

        if(pre == null) {
            throw new Error();
        }

        oldData = pre.next.data;
        pre.next = pre.next.next;

        return oldData;
    }

    @Override
    public void removeAllKey(int key) {

        if (this.head == null || this.head.next == this.head) {
            return;
        }
        Node pre = this.head;
        Node cur = this.head.next;

        while (cur != this.head) {
            if (cur.data == key) {
                pre.next = cur.next;
                cur = cur.next;
            }else {
                pre = cur;
                cur = cur.next;
            }
        }
    }

    @Override
    public int getLength() {

        //头结点不算
        Node cur = this.head.next;
        int count = 0;
        while (cur != this.head) {
            count++;
            cur = cur.next;
        }
        return count;
    }

    @Override
    public void display() {

        Node cur = this.head.next;
        while (cur != this.head) {
            System.out.print(cur.data + " ");
        }
        System.out.println();
    }

    @Override
    public void clear() {

        while (this.head.next != this.head) {
            Node cur = this.head.next;
            this.head.next = cur.next;
        }
        this.head = null;
    }
}
### 不带头节点的循环单链表 #### 定义 不带头节点的循环单链表是一种特殊的线性数据结构,在这种结构中,最后一个节点的指针域不是指向`NULL`而是指向第一个节点(即头节点),形成一个闭环。由于没有额外的头节点,实际的数据存储从这个节点开始。 #### 结构特性 - **无哨兵节点**:不像带虚拟头节点版本那样存在一个仅用于标记起点而不保存任何有效信息的特殊节点。 - **闭合链接**:所有节点通过`next`指针串联起来,并最终回到起始位置,构成一圈。 - **访问方式受限**:遍历时需特别注意防止无限循环;删除或查找特定元素时也较为复杂,因为无法轻易区分当前处理的是哪个部分[^1]。 #### 主要特点 - **节省空间开销**:省去了不必要的辅助节点内存占用。 - **操作相对困难**:增删查改等基本操作都需要考虑特殊情况下的边界条件,比如当列表为空或是只有一个元素的时候如何正确维护环形连接关系。 - **初始化简单但后续管理成本高**:创建空表很容易实现,但是随着元素数量增加以及频繁变动,则可能带来较高的逻辑控制难度。 #### 实现方法 下面给出一段Python代码来展示不带头节点的循环单链表的部分功能: ```python class Node: def __init__(self, data=None): self.data = data self.next = None def create_circular_linked_list(elements): if not elements: return None head = Node(elements[0]) current = head for element in elements[1:]: new_node = Node(element) current.next = new_node current = new_node # Make it circular by linking the last node to the first one. current.next = head return head def traverse(circular_head): if not circular_head: print("The list is empty.") return start = circular_head while True: print(start.data, end=' ') start = start.next if start == circular_head: break ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值