2020年7月2日
摘要: 1 public class SLList{ 2 //定义节点类型 3 public static class IntNode{ 4 public int item; 5 public IntNode next; 6 //构造方法,对对象初始化 7 public IntNode(int i,IntN 阅读全文
posted @ 2020-07-02 19:32 YuanYZX 阅读(254) 评论(0) 推荐(0) 编辑