摘要: package yLinked; /* * 使用java语言模拟单向链表 */ public class Linked { //节点 //数据类型 Entry entry; //构造方法 Linked(){ //只有一个头节点 entry = new Entry(null, null); } //静 阅读全文
posted @ 2020-08-17 00:00 Lerresino 阅读(144) 评论(0) 推荐(0)