學(xué)習(xí)js數(shù)據(jù)結(jié)構(gòu)與算法3—鏈表

鏈表

相對于傳統(tǒng)的數(shù)組,鏈表的一個好處在于垒探,添加或移除元素的時候不需要移動其他元素眉撵。

5.1 創(chuàng)建一個鏈表

    function LinkedList() {
        var Node = function(ele) {
            this.ele = ele;
            this.next = null;
        };
        
        var length = 0;
        var head = null;
        
        // 5.1.1 向列表尾部添加一項
        this.append = function(ele) {
            var node = new Node(ele),
                current;
                
            if (head === null) {
                head = node;
            } else {
                current = head;
                // 循環(huán)列表,直到找到最后一項
                while (current.next) {
                    current = current.next;
                }
                // 找到最后一項把敞,將其next賦為node,建立鏈接
                current.next = node;
            }
            length++;   // 更新列表長度
        };
        
        // 5.1.2 根據(jù)特定位置移除一個元素
        this.removeAt = function(pos) {
            // 檢查越界值
            if (pos > -1 && pos < length) {
                var current = head,
                    prev,
                    index = 0;
                    
                // 移除第一項
                if (pos === 0) {
                    head = current.next;
                } else {
                    while (index++ < pos) {
                        prev = current;
                        current = current.next;
                    }
                    // 將prev與current的下一項鏈接起來:跳過current,從而移除它
                    prev.next = current.next;
                }
                
                length--;
                
                return current.ele;
            } else {
                return null;
            }
        };
        
        // 5.1.3 在任意位置插入一個元素
        this.insert = function(pos, ele) {
            // 檢查越界值
            if (pos >= 0 && pos <= length) {
                var node = new Node(ele),
                    current = head,
                    prev,
                    index = 0;
                // 在第一個位置添加    
                if (pos === 0) {
                    node.next = current;
                    head = node;
                } else {
                    while (index++ < pos) {
                        prev = current;
                        current = current.next;
                    }
                    
                    node.next = current;
                    prev.next = node;
                }
                
                length++;
                
                return true;
            } else {
                return false;
            }
        };
        
        // 5.1.4 實現(xiàn)其他方法
        // 1.toString方法
        this.toString = function() {
            var current = head,
                str = '';
                
            while (current) {
                str += ',' + current.ele;
                current = current.next;
            }
            
            return str.slice(1);
        };
        // 2.indexOf方法
        this.indexOf = function(ele) {
            var current = head,
                index = 0;
                
            while (current) {
                if (ele === current.ele) {
                    return index;
                }
                index++;
                current = current.next;
            }
            
            return -1;
        };
        // 3.remove方法
        this.remove = function(ele) {
            var index = this.indexOf(ele);
            return this.removeAt(index);
        };
        // 4.isEmpty,size,和getHead方法
        this.isEmpty = function() {
            return length === 0;
        };
        this.size = function() {
            return length;
        };
        this.getHead = function() {
            return head;  
        };
    }

5.2 雙向鏈表

雙向鏈表提供了兩種迭代列表的方法:從頭到尾弥奸,或反過來

優(yōu)點: 在單向鏈表中,如果迭代列表時錯過了要找的元素奋早,就需要從頭再來盛霎,雙向鏈表則不需要如此

    function DoublyLinkedList() {
        var Node = function(ele) {
            this.ele = ele;
            this.next = null;
            this.prev = null;   // 新增的
        }
        var length = 0;
        var head = null;
        var tail = null;    // 新增的
        
        // 5.2.1 在任意位置插入一個新元素
        this.insert = function (pos, ele) {
            // 檢查越界值
            if (pos >= 0 && pos <= length) {
                var node = new Node(ele),
                    current = head,
                    prev,
                    index = 0;
    
                if (pos === 0) {    // 在第一個位置添加
                    if (!head) {
                        head = node;
                        tail = node;
                    } else {
                        node.next = current;
                        current.prev = node;
                        head = node;
                    }
                } else if (pos === length) {
                    current = tail;
                    current.next = node;
                    node.prev = current;
                    tail = node;
                } else {
                    while (index++ < pos) {
                        prev = current;
                        current = current.next;
                    }
                    node.next = current;
                    prev.next = node;
    
                    current.prev = node;
                    node.prev = prev;
                }
    
                length++;
    
                return true;
            } else {
                return false;
            }
        }
        
        // 5.2.2 從任意位置移除元素
        this.removeAt = function(pos) {
            if (pos > -1 && pos < length) {
                var current = head,
                    prev,
                    index = 0;
    
                // 移除第一項    
                if (pos === 0) {
                    head = current.next;
    
                    if (length === 1) {
                        tail = null;
                    } else {
                        head.prev = null;
                    }
                } else if (pos === length - 1) {
                    current = tail;
                    tail = current.prev;
                    tail.next = null;
                } else {
                    while (index++ < pos) {
                        prev = current;
                        current = current.next;
                    }
                    prev.next = current.next;
                    current.next.prev = prev;
                }
    
                length--;
    
                return current.ele;
            } else {
                return null;
            }         
        };
    }
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市耽装,隨后出現(xiàn)的幾起案子摩渺,更是在濱河造成了極大的恐慌,老刑警劉巖剂邮,帶你破解...
    沈念sama閱讀 212,383評論 6 493
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件摇幻,死亡現(xiàn)場離奇詭異,居然都是意外死亡挥萌,警方通過查閱死者的電腦和手機(jī)绰姻,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,522評論 3 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來引瀑,“玉大人狂芋,你說我怎么就攤上這事『┰裕” “怎么了帜矾?”我有些...
    開封第一講書人閱讀 157,852評論 0 348
  • 文/不壞的土叔 我叫張陵翼虫,是天一觀的道長。 經(jīng)常有香客問我屡萤,道長珍剑,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,621評論 1 284
  • 正文 為了忘掉前任死陆,我火速辦了婚禮招拙,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘措译。我一直安慰自己别凤,他們只是感情好,可當(dāng)我...
    茶點故事閱讀 65,741評論 6 386
  • 文/花漫 我一把揭開白布领虹。 她就那樣靜靜地躺著规哪,像睡著了一般。 火紅的嫁衣襯著肌膚如雪塌衰。 梳的紋絲不亂的頭發(fā)上由缆,一...
    開封第一講書人閱讀 49,929評論 1 290
  • 那天,我揣著相機(jī)與錄音猾蒂,去河邊找鬼均唉。 笑死,一個胖子當(dāng)著我的面吹牛肚菠,可吹牛的內(nèi)容都是我干的舔箭。 我是一名探鬼主播,決...
    沈念sama閱讀 39,076評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼蚊逢,長吁一口氣:“原來是場噩夢啊……” “哼层扶!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起烙荷,我...
    開封第一講書人閱讀 37,803評論 0 268
  • 序言:老撾萬榮一對情侶失蹤镜会,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后终抽,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體戳表,經(jīng)...
    沈念sama閱讀 44,265評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,582評論 2 327
  • 正文 我和宋清朗相戀三年昼伴,在試婚紗的時候發(fā)現(xiàn)自己被綠了匾旭。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,716評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡圃郊,死狀恐怖价涝,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情持舆,我是刑警寧澤色瘩,帶...
    沈念sama閱讀 34,395評論 4 333
  • 正文 年R本政府宣布伪窖,位于F島的核電站,受9級特大地震影響居兆,放射性物質(zhì)發(fā)生泄漏覆山。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 40,039評論 3 316
  • 文/蒙蒙 一史辙、第九天 我趴在偏房一處隱蔽的房頂上張望汹买。 院中可真熱鬧佩伤,春花似錦聊倔、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,798評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至孤荣,卻和暖如春甸陌,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背盐股。 一陣腳步聲響...
    開封第一講書人閱讀 32,027評論 1 266
  • 我被黑心中介騙來泰國打工钱豁, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人疯汁。 一個月前我還...
    沈念sama閱讀 46,488評論 2 361
  • 正文 我出身青樓牲尺,卻偏偏與公主長得像,于是被迫代替她去往敵國和親幌蚊。 傳聞我的和親對象是個殘疾皇子谤碳,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,612評論 2 350

推薦閱讀更多精彩內(nèi)容