数据结构 -- 双向链表 linkedList 手写
双向链表 linkedListpackage list;public class LinkedList { transient int size = 0; transient Node first; transient Node last; public LinkedList() { } public void a