09 2013 档案

基础链表
摘要:package constract;class Node { private Node node; private T value; private int length; public Node(T t){ value = t; node = null; } public Node(T value , Node node){ this.value = value; this.node = node; } public Node getNode()... 阅读全文
posted @ 2013-09-02 12:07 无泪的寂寞 阅读(113) 评论(0) 推荐(0)