這篇文章將為大家詳細(xì)講解有關(guān)JavaScript數(shù)據(jù)結(jié)構(gòu)之單鏈表和循環(huán)鏈表的示例分析,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
創(chuàng)新互聯(lián)公司-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價比雙湖網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式雙湖網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋雙湖地區(qū)。費(fèi)用合理售后完善,十載實體公司更值得信賴。
鏈表是一種物理存儲單元上非線性、非連續(xù)性的數(shù)據(jù)結(jié)構(gòu)(它在數(shù)據(jù)邏輯上是線性的),它的每個節(jié)點(diǎn)由兩個域組成:數(shù)據(jù)域和指針域。數(shù)據(jù)域中存儲實際數(shù)據(jù),指針域則存儲著指針信息,指向鏈表中的下一個元素或者上一個元素。正是由于指針的存在,鏈表的存儲在物理單元是非連續(xù)性的。
鏈表的優(yōu)點(diǎn)和缺點(diǎn)同樣明顯。和線性表相比,鏈表在添加和刪除節(jié)點(diǎn)上的效率更高,因為其只需要修改指針信息即可完成操作,而不像線性表(數(shù)組)那樣需要移動元素。同樣的,鏈表的長度在理論上也是無限的(在存儲器容量范圍內(nèi)),并可以動態(tài)變化長度,相比線性表優(yōu)勢很大。 相應(yīng)的,由于線性表無法隨機(jī)訪問節(jié)點(diǎn),只能通過指針順著鏈表進(jìn)行遍歷查詢來訪問,故其訪問數(shù)據(jù)元素的效率比較低。
下面是JS部分
這里面封裝了的常用方法及描述:
方法 | 描述 |
---|---|
append(element) | 向鏈表尾部添加結(jié)點(diǎn)element |
insert(position,element) | 向位置position處插入結(jié)點(diǎn)element |
removeAt(position) | 按照索引值position刪除結(jié)點(diǎn) |
remove(element) | 搜索并刪除給定結(jié)點(diǎn)element |
remove() | 刪除鏈表中最后一個結(jié)點(diǎn) |
indexOf(element) | 查找并返回給定結(jié)點(diǎn)element的索引值 |
isEmpty() | 判斷鏈表是否為空 |
size() | 獲取鏈表長度 |
toString() | 轉(zhuǎn)換為字符串輸出 |
getHead() | 獲取頭結(jié)點(diǎn) |
getTail() | 獲取尾結(jié)點(diǎn) |
對于各常用方法的算法描述在這里就不寫了,相信大家都可以輕易讀懂并理解,畢竟都是非常基礎(chǔ)的知識了。
單鏈表:
function LinkedList(){ /*節(jié)點(diǎn)定義*/ var Node = function(element){ this.element = element; //存放節(jié)點(diǎn)內(nèi)容 this.next = null; //指針 } var length = 0, //存放鏈表長度 head = null; //頭指針 this.append = function(element){ var node = new Node(element), current; //操作所用指針 if (!head){ head = node; }else { current = head; while(current.next){ current = current.next; } current.next = node; } length++; return true; }; this.insert = function(position, element){ if (position >= 0 && position <= length) { var node = new Node(element), current = head, previous, index = 0; if(position === 0){ node.next = current; head = node; }else{ while(index++ < position){ previous = current; current = current.next; } node.next = current; previous.next = node; } length++; return true; }else{ return false; } }; this.removeAt = function(position){ if(position > -1 && position < length){ var current = head, previous, index = 0; if (position === 0) { head = current.next; }else{ while (index++ < position){ previous = current; current = current.next; } previous.next = current.next; }; length--; return current.element; }else{ return null; } }; this.remove = function(element){ var current = head, previous; if(element === current.element){ head = current.next; length--; return true; } previous = current; current = current.next; while(current){ if(element === current.element){ previous.next = current.next; length--; return true; }else{ previous = current; current = current.next; } } return false; }; this.remove = function(){ if(length < 1){ return false; } var current = head, previous; if(length == 1){ head = null; length--; return current.element; } while(current.next !== null){ previous = current; current = current.next; } previous.next = null; length--; return current.element; }; this.indexOf = function(element){ var current = head, index = 0; while(current){ if(element === current.element){ return index; } index++; current = current.next; } return false; }; this.isEmpty = function(){ return length === 0; }; this.size = function(){ return length; }; this.toString = function(){ var current = head, string = ''; while(current){ string += current.element; current = current.next; } return string; }; this.getHead = function(){ return head; } }
循環(huán)鏈表:在單鏈表的基礎(chǔ)上,將尾節(jié)點(diǎn)的指針指向頭結(jié)點(diǎn),就構(gòu)成了一個循環(huán)鏈表。環(huán)形鏈表從任意一個節(jié)點(diǎn)開始,都可以遍歷整個鏈表。
function CircularLinkedList(){ var Node = function(element){ this.element = element; this.next = null; } var length = 0, head = null; this.append = function(element){ var node = new Node(element), current; if (!head) { head = node; node.next = head; }else{ current = head; while(current.next !== head){ current = current.next; } current.next = node; node.next = head; }; length++; return true; }; this.insert = function(position, element){ if(position > -1 && position < length){ var node = new Node(element), index = 0, current = head, previous; if (position === 0) { node.next = head; head = node; }else{ while(index++ < position){ previous = current; current = current.next; } previous.next = node; node.next = current; }; length++; return true; }else{ return false; } }; this.removeAt = function(position){ if(position > -1 && position < length){ var current = head, previous, index = 0; if (position === 0) { head = current.next; }else{ while (index++ < position){ previous = current; current = current.next; } previous.next = current.next; }; length--; return current.element; }else{ return null; } }; this.remove = function (element){ var current = head, previous, indexCheck = 0; while(current && indexCheck < length){ if(current.element === element){ if(indexCheck == 0){ head = current.next; length--; return true; }else{ previous.next = current.next; length--; return true; } }else{ previous = current; current = current.next; indexCheck++; } } return false; }; this.remove = function(){ if(length === 0){ return false; } var current = head, previous, indexCheck = 0; if(length === 1){ head = null; length--; return current.element; } while(indexCheck++ < length){ previous = current; current = current.next; } previous.next = head; length--; return current.element; }; this.indexOf = function(element){ var current = head, index = 0; while(current && index < length){ if(current.element === element){ return index; }else{ index++; current = current.next; } } return false; }; this.isEmpty = function(){ return length === 0; }; this.size = function(){ return length; }; this.toString = function(){ var current = head, string = '', indexCheck = 0; while(current && indexCheck < length){ string += current.element; current = current.next; indexCheck++; } return string; }; }
使用方法:
在類外部擴(kuò)充方法:
關(guān)于“JavaScript數(shù)據(jù)結(jié)構(gòu)之單鏈表和循環(huán)鏈表的示例分析”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
文章題目:JavaScript數(shù)據(jù)結(jié)構(gòu)之單鏈表和循環(huán)鏈表的示例分析
文章位置:http://www.rwnh.cn/article0/jdcgoo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供全網(wǎng)營銷推廣、做網(wǎng)站、網(wǎng)站建設(shè)、企業(yè)建站、網(wǎng)站制作、域名注冊
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)