浪跡天涯 程式學習筆記心得

[學習筆記 | 基礎資料結構] Queue-使用Javascript

程式碼來源/ 教學程式碼

概念簡述

基礎結構

  1. Queue方法
    • print 印出所有元素
    • enqueue 加入新元素
    • dequeue 刪除最後加入的元素
    • front 查看頂端/最後加入的元素
    • size Queue元素總數
    • isEmpty 是否有儲存元素
  2. Priority Queue方法
    • printCollection 印出所有元素
    • enqueue 加入新元素
    • dequeue 刪除最後加入的元素
    • front 查看頂端/最後加入的元素
    • size Queue元素總數
    • isEmpty 是否有儲存元素

實作步驟

  1. 實作print方法
    ...
     this.print = function() {
         console.log(collection);
     };
    ...
    
  2. 實作enqueue方法
    ...
     this.enqueue = function(element) {
         collection.push(element);
     };
    ...
    
  3. 實作dequeue方法
    ...
     this.dequeue = function() {
         return collection.shift(); 
     };
    ...
    
  4. 實作front方法
    ...
     this.front = function() {
         return collection[0];
     };
    ...
    
  5. 實作size方法
    ...
     this.size = function() {
         return collection.length; 
     };
    ...
    
  6. 實作isEmpty方法
    ...
     this.isEmpty = function() {
         return (collection.length === 0); 
     };
    ...
    
  7. 即完成,完整程式碼如下:
    function Queue () { 
     collection = [];
    
     this.print = function() {
         console.log(collection);
     };
        
     this.enqueue = function(element) {
         collection.push(element);
     };
        
     this.dequeue = function() {
         return collection.shift(); 
     };
        
     this.front = function() {
         return collection[0];
     };
        
     this.size = function() {
         return collection.length; 
     };
        
     this.isEmpty = function() {
         return (collection.length === 0); 
     };
    }
    
...
    this.enqueue = function(element){
        if (this.isEmpty()){ 
            collection.push(element);
        } else {
            var added = false;
            for (var i=0; i<collection.length; i++){
                 if (element[1] < collection[i][1]){ //checking priorities
                    collection.splice(i,0,element);
                    added = true;
                    break;
                }
            }
            if (!added){
                collection.push(element);
            }
        }
    };
...

修改後完整程式碼如下:

function Queue () { 
    collection = [];

    this.print = function() {
        console.log(collection);
    };
    
    this.enqueue = function(element){
        if (this.isEmpty()){ 
            collection.push(element);
        } else {
            var added = false;
            for (var i=0; i<collection.length; i++){
                 if (element[1] < collection[i][1]){ //checking priorities
                    collection.splice(i,0,element);
                    added = true;
                    break;
                }
            }
            if (!added){
                collection.push(element);
            }
        }
    };
    
    this.dequeue = function() {
        return collection.shift(); 
    };
    
    this.front = function() {
        return collection[0];
    };
    
    this.size = function() {
        return collection.length; 
    };
    
    this.isEmpty = function() {
        return (collection.length === 0); 
    };
}

使用範例