双向链表
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