2022年7月25日
摘要: public class LinkedList<E> { private class Node { public E e; public Node next; public Node(E e, Node next) { this.e = e; this.next = next; } public N 阅读全文
posted @ 2022-07-25 21:59 网恋被骗两千八 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 为什么链表很重要? 链表是真正的动态数组。 是最简单的动态数据结构。 更深入的理解引用(或者指针)。 更深入的理解递归。 它可以用来辅助组成其他数据结构。 链表LinkedList 数据存储在节点(Node)中。 Class Node { E e; Node next; } 优点:真正的动态,不需要 阅读全文
posted @ 2022-07-25 21:51 网恋被骗两千八 阅读(21) 评论(0) 推荐(0) 编辑