前端算法學習js鏈表定義及翻轉

1.定義節點類 function Node(element) { this.element = element; this.next = null; } 2.定義鏈表及增刪查改方法 function linkList() { this.head = new Node('head'); //調用對鏈表增刪刪改的方法 this.find = find; this.insert
相關文章
相關標籤/搜索