摘要:
public class MyBiLinkedList { Node head; Node tail; public Node getLast() { // temp变量来保存链表的最后那个节点 Node temp = head; while (temp.next != null) { temp = temp.next; } // 循环结束时,temp就是最后那个节点 return temp; } 阅读全文
摘要:
比如有一个链表是这样的,1->2->3->4->5,反转后成为 5->4->3->2->1 阅读全文