数据结构与算法--循环链表

数据结构与算法--循环链表

单循环链表的实现

单链表的实现中,最后一个结点始终指向null,表示达到表尾部。位于last这个位置,想要访问其他结点是不可能的了,因为我们既没有prev指针指向前一个结点,last也不指向任何其他结点。如果把lastfirst连接起来,即让last.next指向first,这样就形成了一个首尾相连的环形结构,所以不管从哪个结点出发,总能遍历到所有结点。非循环结构的单链表,根据当前结点是否为null判断是否到了表尾,由于循环链表没有明确的first和last之说了,所以在遍历时候按照first或者last去判断不太方便。为了简单起见,直接用链表长度N作为判断条件。index自增到N说明已经遍历完一遍。基本上拿单链表的代码改改就能实现,比较简单就直接上代码了。

package Chap3;


import java.util.Iterator;

/**
 * 单向循环链表,last不再指向null而是first,即使得last.next = first
 * 同时遍历判断条件从current != null 变成判断长度 i < N
 */
public class CircularLinkedList<Item> implements Iterable<Item> {

    private class Node {
        Item data;
        Node next;
    }

    // 指向第一个节点
    private Node first;
    // 指向最后一个节点
    private Node last;
    private int N;

    public CircularLinkedList(Item... items) {
        for (Item item : items) {
            add(item);
        }
    }

    public int size() {
        return N;
    }

    public boolean isEmpty() {
        return N == 0;
    }

    private Node index(int index) {
        // [0, N-1]的定位范围
        if (index < 0 || index >= N) {
            throw new IndexOutOfBoundsException(index + "");
        }

        Node current = first;
        for (int j = 0; j < index; j++) {
            current = current.next;
        }
        return current;
    }

    public Item get(int index) {
        Node current = index(index);
        return current.data;
    }

    public void set(int index, Item item) {
        Node current = index(index);
        current.data = item;
    }

    // 可以在表头(index==0)和表尾插入
    public void insert(int index, Item item) {
        // 如果index==0,因为没有设置头结点所以只需单向链接就行
        if (index == 0) {
            push(item);
        } else if (index == N) {
            add(item);
        }
        else if (index > 0 && index < N) {
            Node a = new Node();
            // 其他插入的位置在index-1和index之间, 需要定位到index-1的位置,
            Node current = index(index - 1);
            a.data = item;
            a.next = current.next;
            current.next = a;
            N++;
        } else {
            throw new IndexOutOfBoundsException(index + "");
        }
    }


    public Item remove(int index) {
        // 和insert一样,index==0处理方式也不一样
        Item item;
        if (index == 0) {
            item = pop();
            // 和insert不一样(它可以在表尾null处插入),remove则不该移除本来就是null的值
            // 表尾的删除也稍有不同
        } else if(index == N -1) {
            Node current = index(index - 1);
            item = current.next.data;
            current.next = first;
            last = current;
        } else if (index > 0 && index < N) {
            Node current = index(index - 1);
            // 定位到index的上一个了,所以取next
            item = current.next.data;
            Node next = current.next.next;
            // 下面两行帮助垃圾回收
            current.next.next = null;
            current.next.data = null;
            current.next = next;
            N--;
        } else {
            throw new IndexOutOfBoundsException(index + "");
        }
        return item;
    }

    public void add(Item item) {
        Node oldlast = last;
        last = new Node();
        last.data = item;
        // 如果是第一个元素,则last和first指向同一个,即第一个
        if (isEmpty()) {
            first = last;
            last.next = first;
        } else {
            oldlast.next = last;
            // last被新结点取代,next默认是null,所以每次add都要将它的next指向first
            last.next = first;
        }
        N++;
    }

    public void push(Item item) {
        Node oldfirst = first;
        first = new Node();
        first.data = item;
        if (isEmpty()) {
            last = first;
            // 这句是循环链表
            last.next = first;
        } else {
            first.next = oldfirst;
        }
        N++;
    }

    // 删除表头元素
    public Item pop() {
        Item item = first.data;
        Node next = first.next;
        // 这两行有助于垃圾回收
        first.data = null;
        first.next = null;
        first = next;
        N--;
        // 最后一个元素被删除,first自然为空了,但是last需要置空。
        // 注意是先减再判断是否为空
        if (isEmpty()) {
            last = null;
        }
        return item;
    }

    public void clear() {
        while (first != null) {
            Node next = first.next;
            // 下面两行帮助垃圾回收
            first.next = null;
            first.data = null;
            first = next;
        }
        // 所有元素都空时,last也没有有所指了。记得last置空
        last = null;
        N = 0;
    }

    public int indexOf(Item item) {
        int index = 0;
        int i = 0;

        if (item != null) {
            for (Node cur = first; i < N; cur = cur.next) {
                if (item.equals(cur.data)) {
                    return index;
                }
                index++;
                i++;
            }
        } else {
            for (Node cur = first; i < N; cur = cur.next) {
                if (cur.data == null) {
                    return index;
                }
                index++;
                i++;
            }
        }
        return -1;
    }

    public boolean contains(Item item) {
        return indexOf(item) >= 0;
    }

    // 因为是循环链表,无头无尾,用长度判断比较方便
    @Override
    public Iterator<Item> iterator() {
        return new Iterator<>() {
            private Node current = first;
            private int i = 0;

            @Override
            public boolean hasNext() {
                return i < N;
            }

            @Override
            public Item next() {
                Item item = current.data;
                current = current.next;
                i++;
                return item;
            }
        };
    }

    @Override
    public String toString() {
        Iterator<Item> it = iterator();

        if (!it.hasNext()) {
            return "[]";
        }

        StringBuilder sb = new StringBuilder();
        sb.append("[");
        while (true) {
            Item item = it.next();
            sb.append(item);
            if (!it.hasNext()) {
                return sb.append("]").toString();
            }

            sb.append(", ");
        }
    }

    public void combineList(CircularLinkedList<Item> b) {
        // 原表的尾和第二个链表的头相连
        last.next = b.first;
        // 第二个链表的尾和原表的头相连
        b.last.next = first;
        // 更新原表的last
        last = b.last;
        // 更新长度
        N += b.N;
    }

    public static void main(String[] args) {
        CircularLinkedList<String> a = new CircularLinkedList<>();

        a.push("1");
        a.push("2");
        a.push("3");
        System.out.println(a.size());
        a.set(1, "22");
        System.out.println(a.get(1));
        a.clear();
        a.add("1");
        a.add("2");
        a.add("3");
        a.insert(2, "4");
        a.remove(1);
        System.out.println(a); // [1, 4, 3]
        System.out.println(a.indexOf("4")); // 1

        CircularLinkedList<String> b = new CircularLinkedList<>("10", "40", "30");
        a.combineList(b);
        System.out.println(a);
    }
}

除了addpushindexOfIterator的实现,其余代码没有改动。

addpush在添加第一个元素时增加了一行last.next = first;表示last的下一个结点就是first。另外add方法在后续添加元素时,由于实现中last = new Node();,此时last.next还等于null,也需要last.next = first;。而push方法在后续添加元素时,因为改变的是first,last.next没有改变,只是指向了新的first而已,所以无需那句last.next = first;

indexOf方法,以链表的长度作为遍历结束的标志,按照习惯,从first开始,遍历一遍链表后停止。

for (Node cur = first; i < N; cur = cur.next) {
    i++;
}

IteratorhasNextnext的实现其实和上面indexOf的实现是一个原理。

拼接两个循环链表

新增了一个方法!combineList可以将两个单循环链表首尾相连,形成一个更大的单循环链表

public void combineList(CircularLinkedList<Item> b) {
    // 原表的尾和第二个链表的头相连
    last.next = b.first;
     // 第二个链表的尾和原表的头相连
    b.last.next = first;
    // 更新原表的last
    last = b.last;
    // 更新长度
    N += b.N;
}

若链表A链接链表B:

  1. 将循环链表A的last和循环链表B的first相连;
  2. 将循环链表B的last和循环链表A的first相连;
  3. 更新新链表的last为链表B的last

看图更直观。


by @sunhaiyu

2017.8.1

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,099评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,828评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,540评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,848评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,971评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,132评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,193评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,934评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,376评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,687评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,846评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,537评论 4 335
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,175评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,887评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,134评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,674评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,741评论 2 351

推荐阅读更多精彩内容

  • 数据结构与算法--双向链表 单向链表的指向是单向的,当前结点只指向它的后一个结点。同样,遍历的时候也只有一个顺序。...
    sunhaiyu阅读 327评论 0 0
  • 本文内容取自于小甲鱼的数据结构与算法。http://www.jianshu.com/p/230e6fde9c75 ...
    阿阿阿阿毛阅读 2,883评论 0 7
  • 数据结构与算法--静态链表 链表的实现依赖于指针(在Java中称作对象引用可能更准确),如果某编程语言没有指针呢?...
    sunhaiyu阅读 1,042评论 0 4
  • 链表 概念 说到链表,coder们都不会陌生,在日常开发中或多或少都会用到它。它是链式存储的线性表,简称链表。链表...
    扈扈哈嘿阅读 2,077评论 0 5
  • 数据 元素又称为元素、结点、记录是数据的基本单位 数据项是具有独立含义的最小标识单位 数据的逻辑结构 数据的逻辑结...
    PPPeg阅读 13,708评论 0 15