您好,登錄后才能下訂單哦!
小編這次要給大家分享的是如何定義和使用JavaScript鏈表,文章內容豐富,感興趣的小伙伴可以來了解一下,希望大家閱讀完這篇文章之后能夠有所收獲。
鏈表
一個 鏈表 是數據元素的線性集合, 元素的線性順序不是由它們在內存中的物理位置給出的。 相反, 每個元素指向下一個元素。它是由一組節點組成的數據結構,這些節點一起,表示序列。
鏈表的一個缺點是訪問時間是線性的(而且難以管道化)。
class Node { constructor(val) { this.val = val; this.next = null; } }
顯示鏈表
function display () { var currNode = this.head; while ( !(currNode.next == null) ){ console.log( currNode.next.element ); currNode = currNode.next; } }
查找
function find ( item ) { var currNode = this.head; while ( currNode.element != item ){ currNode = currNode.next; } return currNode; }
插入
function insert ( newElement , item ) { var newNode = new Node( newElement ); var currNode = this.find( item ); newNode.next = currNode.next; currNode.next = newNode; }
刪除
function findPrev( item ) { var currNode = this.head; while ( !( currNode.next == null) && ( currNode.next.element != item )){ currNode = currNode.next; } return currNode; } function remove ( item ) { var prevNode = this.findPrev( item ); if( !( prevNode.next == null ) ){ prevNode.next = prevNode.next.next; } }
看完這篇關于如何定義和使用JavaScript鏈表的文章,如果覺得文章內容寫得不錯的話,可以把它分享出去給更多人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。