摘要: 1.单链表 public class Main { public static void main(String[] args) { LNode L = new LNode(); L.addFirst(4);//头插 L.addFirst(3); L.addFirst(2); L.addFirst( 阅读全文
posted @ 2023-09-19 21:42 赵千万 阅读(15) 评论(0) 推荐(0) 编辑