// 单向链表 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(115)
Comments(0)
Diggs(0)

浙公网安备 33010602011771号