首页 > 编程语言 > 详细

手动实现一个自动排序的双向链表

时间:2021-08-13 17:30:39      阅读:23      评论:0      收藏:0      [点我收藏+]

双向链表

 public class DoubleLinkedList
    {
        private Node head;
        public void add(int data)
        {
            if (head==null)
            {
                head = new Node(data);
            }
            else
            {
                head = head.ADD(new Node(data));
            }
        }
        public override string ToString()
        {
            if (head ==null)
            {
                return string.Empty;
            }
            else
            {
                return this.head.ToString();
            }
        }
        public class Node
        {
            private int data;
            private Node next;
            private Node prev;
            public int Data 
            {
                get { return this.data; }
            }
            public Node(int data) 
            {
                this.data = data;
            }
            public Node ADD(Node newnode)
            {
                if (data>newnode.data)   //传入值大于当前值
                {
                    newnode.next = this;
                    if (this.prev!=null)
                    {
                        this.prev.next = newnode;
                        newnode.prev = this.prev;
                    }
                    this.prev = newnode;
                    return newnode;
                }
                else
                {
                    if (this.next!=null)
                    {
                        this.next.ADD(newnode);
                    }
                    else
                    {
                        this.next = newnode;
                        newnode.prev = this;
                    }
                    return this;
                }
            }
            public override string ToString()
            {
                string str = data.ToString();
                if (next!=null)
                {
                    str += "" + next.ToString();
                }
                return str;
            }
        }
    }

技术分享图片

 

手动实现一个自动排序的双向链表

原文:https://www.cnblogs.com/zjhn/p/15137675.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!