摘要:
public class MyList { static class Node {// 节点类 Object data; Node next; public Node(Object data) {// 构造方法,为data赋值 this.data = data; this.next = null; 阅读全文
posted @ 2017-07-09 11:46
mthoutai
阅读(373)
评论(0)
推荐(0)
浙公网安备 33010602011771号