// 单向链表 function LinkedList() { this.head = {element: 'head', next: null}; this.node = function (node) {return {element: node, next: null}}; // 查找 this.find = function (node) { ... Read More
posted @ 2016-07-18 13:42 koala_熊 Views(111) Comments(0) Diggs(0) Edit