摘要: function Node(element) { this.element = element; this.next = null; this.previous = null; }function LList() { this.head = new Node("head"); this.find = 阅读全文
posted @ 2020-06-15 14:09 很小的小雨 阅读(100) 评论(0) 推荐(0) 编辑