美文网首页
js系列之循环链表

js系列之循环链表

作者: shui水mo墨 | 来源:发表于2019-07-11 23:19 被阅读0次

    循环链表是一种特殊的链表。它跟单链表的区别在于,循环链表的尾节点指针指向的是链表开头的节点。
    循环链表的优点在于,从链表尾部到链表头部比较方便。所以,当我们需要处理的数据有类似于环状的结构,我们可以使用循环链表。
    接下来我们了解下循环链表的结构


    循环链表结构.png

    接下来我们看一下循环链表的定义

    function Node(element)
    {
        this.element=element;
        this.next=next;
    }
    function recycleList()
    {
        this.head=new Node("head");
        this.head.next=this.head;
        this.find=find;
        this.findLast=findLast;
        this.insert=insert;
        this.remove=remove;
        this.display=display;
    }
    

    除了display方法之外,其他方法和之前的单链表一样。

    function display()
    {
        var curNode=this.head;
        while(curNode.next!=null&&curNode.next.element!="head")
        {
            console.log(curNode.next.element);
            curNode=curNode.next;
        }
    }
    

    相关文章

      网友评论

          本文标题:js系列之循环链表

          本文链接:https://www.haomeiwen.com/subject/bctskctx.html