JavaScript数据结构学习笔记(封装栈、队列、优先级队列、链表、双向链表)

传送门

一、栈结构



1、封装栈结构及方法

function Stack() {
    //栈属性
    this.items = [];

    // 入栈
    Stack.prototype.push = function(element) {}

    // 出栈
    Stack.prototype.pop = function() {}

    // 查看栈顶元素
    Stack.prototype.peek = function() {}

    // 判断栈是否为空
    Stack.prototype.isEmty = function() {}

    // 查看栈长度
    Stack.prototype.size = function() {}

    // toString 方法
    Stack.prototype.toString = function() {}
}

2、具体方法实现

  • 入栈
Stack.prototype.push = function(element) {
        // 在数组的尾部压入元素
        return this.items.push(element);
    }
  • 出栈
Stack.prototype.pop = function() {
        // 从数组尾部删除元素,并返回栈顶元素
        return this.items.pop();
    }
  • 查看栈顶元素
Stack.prototype.peek = function() {
        // 从数组尾部查看元素
        return this.items[this.items.length - 1];
    }
  • 判断栈是否为空
Stack.prototype.isEmty = function() {
        // 判断数组是否为空
        return this.items.length === 0;
    }
  • 查看栈长度
Stack.prototype.size = function() {
        // 查看数组长度
        return this.items.length;
    }
  • toString 方法
Stack.prototype.toString = function() {
        let resultString = '';
        // 遍历数组
        for (let i = 0; i < this.items.length; i++) {
            resultString += this.items[i] + ''
        }
        return resultString
    }


二、队列结构


1、封装队列结构及方法

// 队列封装
function Queue() {
    // 属性
    this.items = [];
     
    // 入队
    Queue.prototype.enqueue = function(element) {}
    
    // 出队
    Queue.prototype.inqueue = function() {}
    
    // 查看队头元素
    Queue.prototype.front = function() {}
    
    // 判断队列是否为空
    Queue.prototype.isEmpty = function() {}
    
    //查看队列长度
    Queue.prototype.size = function() {}
    
    // toString 方法
    Queue.prototype.toString = function() {}
}

2、 具体方法实现

  • 入队
Queue.prototype.enqueue = function(element) {
        // 在数组的尾部添加元素
        return this.items.push(element);
    }
  • 出队
Queue.prototype.inqueue = function() {
        // 从数组中删除队头元素,并返回队头元素
        return this.items.shift();
    }
  • 查看队头元素
Queue.prototype.front = function() {
        // 从数组中查看数组第一个元素
        return this.items[0];
    }
  • 判断队列是否为空
Queue.prototype.isEmpty = function() {
        // 判断数组是否为空
        return this.items.length === 0;
    }
  • 查看队列长度
Queue.prototype.size = function() {
        // 查看数组长度
        return this.items.length;
    }
  • toString 方法
Queue.prototype.toString = function() {
        let resultString = '';
        // 遍历数组
        for (let i = 0; i < this.items.length; i++) {
            resultString += this.items[i] + ''
        }
        return resultString
    }


三、优先级队列结构



1、 封装优先级队列结构及方法


function PriorityQueue() {
    
    // 元素包含两部分 element 数据 priority 优先级
    function QueueElement(element, priority) {
        this.element = element;
        this.priority = priority;
    }
    
    // 封装属性
    this.items = [];
    
    // 实现插入方法
    PriorityQueue.prototype.enqueue = function(element, priority){}
    
    // 其他方法跟队列的一致
}

2、具体实现

PriorityQueue.prototype.enqueue = function(element, priority) {
    // 创建 QueueElement 对象
    const queueElement = new queueElement(element, priority)
        
    // 判断队列是否为空
    if (this.items.length == 0) {
        // 为空 直接将数据插入到数组中
        this.items.push(queueElement)
    } else {
        let added = false;
        for (let i = 0; i < this.items.length; i++) {
            // 数字越小,优先级越高。
            if(queueElement.priority < this.items[i].priority) {
                // 在数组的第 i 位插入数据
                this.items.splice(i, 0, queueElement);
                added = true;
                break;
            }
        }
            
        if(!added) {
            // 优先级在数组中最低直接插入
            this.items.push(queueElement)
        }
    }
}

3、 其他方法跟队列一致



三、链表结构



1、封装链表结构及方法


function LinkedList() {
    //内部类: 节点类
    function Node(data){
        this.data = data;
        this.next = null;
    }
    
    //属性
    this.head = null;
    this.length = 0;
    
    // 向列表添加一个新的项
    LinkedList.prototype.append = function(data) {}
    
    // 向列表的特定位置插入一个新的项
    LinkedList.prototype.insert = function(position, data) {}
    
    // 获取对应位置的元素
    LinkedList.prototype.get = function(position) {}
    
    // 返回元素在列表中的索引,如果列表中没有该元素则返回 -1
    LinkedList.prototype.indexOf = function(data) {}
    
    // 修改某个位置的元素
    LinkedList.prototype.update = function(position, newData) {}
    
    // 从列表的特定位置移除一项
    LinkedList.prototype.removeAt = function(position) {}
    
    // 从列表中移除一项
    LinkedList.prototype.remove = function(data) {}
    
    // 如果链表中不包含任何元素,返回 true
    LinkedList.prototype.isEmpty = function() {}
    
    // 返回链表包含的元素个数
    LinkedList.prototype.size = function() {}
    
    // toString 方法
    LinkedList.prototype.toString = function() {}

2、具体方法实现

  • 向列表添加一个新的项
LinkedList.prototype.append = function(data) {
        const newNode = new Node(data);
        // 判断是否为第一个节点
        if (this.length == 0) {
            // 将头部指向第一结点
            this.head = newNode;
        } else {
             // 在链表中找到最后一个结点插入节点
             let current = this.head
             while (current.next) { // 下一个结点不为空
                 current = current.next
             }
             // 最后节点的 next 指向新的节点
             current.next = newNode;
        }
        // 更新链表长度
        this.length += 1;
    }
  • 向列表的特定位置插入一个新的项







LinkedList.prototype.insert = function(position, data) {
        // 对 position 进行越界判断
        if (position < 0 || position > this.length) return false;
        
        // 创建 newNode
        const newNode = new Node(data);
        
        // 判断插入的位置是否是第一个位置
        if (position == 0) {
            newNode.next = head; 
            this.head = newNode;
        } else {
           // 找到指定位置
           let index = 0;
           let current = this.head;
           // 前一个节点
           let previous = null;
           while (index++ < position) {
               previous = current;
               current = current.next;
           }
           newNode.next = current;
           previous.next = newNode;
        }
        // 更新长度
        this.length += 1
        return true;
    }
  • 获取对应位置的元素
LinkedList.prototype.get = function(position) {
        // 对 position 进行越界判断
        if (position < 0 || position >= this.length) return null;
        let current = this.head
        let index = 0;
        while (index++ < position) {
            current = current.next;
        }
        return current.data;
    }
  • 返回元素在列表中的索引,如果列表中没有该元素则返回 -1
LinkedList.prototype.indexOf = function(data) {
        let current = this.head;
        let index = 0;
        while(current) {
            if (current.data === data) {
                return index;
            }
            index += 1;
            current = current.next;
        }
        return -1;
    }
  • 修改某个位置的元素
LinkedList.prototype.update = function(position, newData) {
    // 对 position 进行越界判断
    if (position < 0 || position >= this.length) return false;
    let current = this.head;
    let index = 0;
    while (index++ < position) {
        current = current.next;
    }   
    current.data = newData;
    return true;
  • 从列表的特定位置移除一项







LinkedList.prototype.removeAt = function(position) {
        // 对 position 进行越界判断
        if (position < 0 || position >= this.length) return null;
        let current = this.head;
        
        // 判断是否删除第一个节点
        if (position === 0) {
            this.head = this.head.next;
        } else {
            let index = 0;
            let previous = null;
            while (index++ < position) {
                previous = current;
                current = current.next;
            }
            // 前者指向后者的后者
            previous.next = current.next;
            
            // 更新长度
            this.length -= 1;
            
            return current.data;
        }
  • 其他方法
// 从列表中移除一项
    LinkedList.prototype.remove = function(data) {
        // 根据 data 获取位置
        let position = this.indexOf(data);
        //根据位置信息,删除节点
        return this.removeAt(position); 
    }
    
    // 如果链表中不包含任何元素,返回 true
    LinkedList.prototype.isEmpty = function() {
        return this.length === 0;
    }
    
    // 返回链表包含的元素个数
    LinkedList.prototype.size = function() {
        return this.length;
    }
    
    // toString 方法
    LinkedList.prototype.toString = function() {
        let listString = '';
        let current = this.head;
        
        //循环获取节点
        while (current) {
            listString += current.data + " ";
            current = current.next;
        }
        return listString;
    }


四、双向链表结构



1、封装链表结构及其方法


function DoublyLinkedList() {
    // 属性
    this.head = null;
    this.tail = null;
    this.length = 0;

    //内部类
    function Node(data) {
        this.data = data;
        this.prev = null;
        this.next = null;
    }

    // 向双向链表添加一个新的项
    DoublyLinkedList.prototype.append = function(data) {}

    // 向双向链表的特定位置插入一个新的项
    DoublyLinkedList.prototype.insert = function(position, data) {}

    // 获取对应位置的元素
    DoublyLinkedList.prototype.get = function() {}

    // 返回元素在列表中的索引,如果列表中没有该元素则返回 -1
    DoublyLinkedList.prototype.indexOf = function(data) {}

    // 修改某个位置的元素
    DoublyLinkedList.prototype.update = function(position, newData) {}

    // 从双向链表的特定位置移除一项
    DoublyLinkedList.prototype.removeAt = function(position) {}

    // 从双向链表移除一项
    DoublyLinkedList.prototype.remove = function(data) {}

    // 如果双向链表中不包含任何元素,返回 true
    DoublyLinkedList.prototype.isEmpty = function() {}

    // 返回双向链表包含的元素个数
    DoublyLinkedList.prototype.size = function() {}
    
    // 获取双向链表的第一个元素
    DoublyLinkedList.prototype.getHead = function() {}
    
    // 获取双向链表的最后一个元素
    DoublyLinkedList.prototype.getTail = function() {}

    // toString 方法
    DoublyLinkedList.prototype.toString = function() {}

    // 返回正向遍历的节点字符串形式
    DoublyLinkedList.prototype.forwordString = function() {}

    // 返回反向遍历的节点字符串形式
    DoublyLinkedList.prototype.backwordString = function() {}
}

2、具体方法实现

  • 向双向链表添加一个新的项




DoublyLinkedList.prototype.append = function(data) {
        const newNode = new Node(data);

        // 判断是否添加的是第一个结点
        if (this.length === 0) {
            this.head = newNode;
        } else {
            // 找到链表的最后一个结点
            let current = this.head;
            while (current.next) {
                current = current.next;
            }
            // 最后一个结点指向下一个结点
            current.next = newNode;
            // 新的结点指向上一个结点
            newNode.prev = current;
        }
        // 更新指向最后一个结点
        this.tail = newNode;
        // 更新长度
        this.length += 1;
    }
  • 向双向链表的特定位置插入一个新的项










DoublyLinkedList.prototype.insert = function(position, data) {
        // 越界判断
        if (position < 0 || position > this.length) return false;

        // 判断原来链表是否为空
        if (this.length == 0) {
            this.head = newNode;
            this.tail = newNode;
        } else {
            // 判断 position 是否为 0
            if (position == 0) {
                this.head.prev = newNode;
                newNode.next = this.head;
                this.head = newNode;
            } else if (position == this.length) {
                newNode.prev = this.tail;
                this.tail.next = newNode;
                this.tail = newNode;
            } else {
                let current = this.head;
                let index = 0;
                while (index++ < position) {
                    current = current.next;
                }
                newNode.next = current;
                newNode.prev = current.prev;
                current.prev.next = newNode;
                current.prev = newNode;
            }
            this.length += 1;
            return true;
        }
    }
  • 获取对应位置的元素
DoublyLinkedList.prototype.get = function() {
        // 越界判断
        if (position < 0 || position >= this.length) return false;
        let current = this.head;
        let index = 0;
        while (index++ < position) {
            current = current.next;
        }
        return current.data;
    }
  • 返回元素在列表中的索引,如果列表中没有该元素则返回 -1
DoublyLinkedList.prototype.indexOf = function(data) {
        let current = this.head;
        let index = 0;
        while (current) {
            if (current.data == data) {
                return index;
            }
            current = current.next;
            index += 1;
        }
        return -1;
    }
  • 修改某个位置的元素
DoublyLinkedList.prototype.update = function(position, newData) {
        // 越界判断
        if (position < 0 || position >= this.length) return false;
        let current = this.head;
        let index = 0;
        while (index++ < position) {
            current = current.next;
        }
        current.data = newData;
        return true;
    }
  • 返回正反向遍历的节点字符串形式
// 返回正向遍历的节点字符串形式
DoublyLinkedList.prototype.forwordString = function() {
    let current = this.head;
    let resultString = "";
    while (current) {
        resultString += current.data + " ";
        current = current.next;
    }
    return resultString;
}

// 返回反向遍历的节点字符串形式
DoublyLinkedList.prototype.backwordString = function() {
    let current = this.tail;
    let resultString = "";
    while (current) {
        resultString += current.data + " ";
        current = current.prev;
    }
    return resultString;
}
// toString 方法
DoublyLinkedList.prototype.toString = function() {
    this.forwordString();
}
  • 从双向链表的特定位置移除一项










DoublyLinkedList.prototype.removeAt = function(position) {
        // 越界判断
        if (position < 0 || position >= this.length) return null;
        let current = this.head;
        if (this.length == 1) {
            // 只存在一个结点
            this.head = null;
            this.tail = null;
        } else {
            // postion 为 0
            if (position == 0) {
                this.head.next.prev = null;
                this.head = this.head.next;
            } else if (position == this.length - 1) {
                // postion 为 this.length
                current = this.tail;
                this.tail.prev.next = null;
                this.tail = this.tail.prev;
            } else {
                // postion 为 任意值
                let index = 0;
                while (index++ < position) {
                    current = current.next;
                }
                current.prev.next = current.next;
                current.next.prev = current.prev;
            }
        }
        this.length -= 1;
        return current.data;
    }

  • 其他方法
// 从列表移除一项
DoublyLinkedList.prototype.remove = function(data) {
    let postion = this.indexOf(data);
    return this.removeAt(postion);
}

// 如果链表中不包含任何元素,返回 true
DoublyLinkedList.prototype.isEmpty = function() {
    return this.length == 0;
}

// 返回链表包含的元素个数
DoublyLinkedList.prototype.size = function() {
    return this.length;
}
    
// 获取链表的第一个元素
DoublyLinkedList.prototype.getHead = function() {
    return this.head.data;
}
    
// 获取链表的最后一个元素
DoublyLinkedList.prototype.getTail = function() {
    return this.tail.data;
}

源码下载

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,539评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,911评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,337评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,723评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,795评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,762评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,742评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,508评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,954评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,247评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,404评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,104评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,736评论 3 324
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,352评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,557评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,371评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,292评论 2 352

推荐阅读更多精彩内容