摘要: function LinkedList(){ //Node表示要加入列表的项var Node=function(element){ this.element=element; this.next=null;};var length=0;//存储列表项的数量var head=null;//head存储 阅读全文
posted @ 2016-10-07 23:22 _V- 阅读(3341) 评论(0) 推荐(0)