摘要: 单链表 参考代码 模板 //单链表类 public class SingleLinkedList { private final static int N = 100010;//数据规模为10W private static int head;// 头节点 private static int[] 阅读全文
posted @ 2025-02-06 19:09 idle_life 阅读(34) 评论(0) 推荐(0)