2011年10月26日

摘要: 代码1.JS链表代码(网上的)View Code /** * 单向链表 * by snandy 2011 * */LinkedList = function(){ function Node(data, next) { this.data = data || null; this.next = next || null;}Node.prototype = { getValue: function() { return this.data; }, setValue: function(obj) { this.data = obj;... 阅读全文
posted @ 2011-10-26 17:34 寂寞成灾 阅读(264) 评论(0) 推荐(0) 编辑

导航