摘要:
function Node(element) { this.element = element; this.next = null; this.previous = null; } function LList() { this.head = new Node("head"); this.f... 阅读全文
posted @ 2016-04-12 19:47
绯乐
阅读(123)
评论(0)
推荐(0)
摘要:
关于添加节点的图示理解: 阅读全文
posted @ 2016-04-12 19:22
绯乐
阅读(138)
评论(0)
推荐(0)