摘要: /* 定义结构 */ var node=function(element){ this.element=element this.next=null } var linkedList=function(){ this.head=new node("head") this.find=find this 阅读全文
posted @ 2018-11-04 00:47 mingL 阅读(2269) 评论(1) 推荐(0) 编辑