摘要: function Node (element){ this.element = element; this.next = null; } function LinkedList(){ this.length = 0; this.head = null; ... 阅读全文
posted @ 2018-01-17 22:59 kerryk 阅读(170) 评论(0) 推荐(0) 编辑