中文字幕日韩一区二区_国产一区二区av_国产毛片av_久久久久国产一区_色婷婷电影_国产一区二区精品

javascript中利用數組實現的循環隊列代碼

//循環隊列
function CircleQueue(size){
this.initQueue(size);
}
CircleQueue.prototype = {
//初始化隊列
initQueue : function(size){
this.size = size;
this.list = new Array();
this.capacity = size + 1;
this.head = 0;
this.tail = 0;
},
//壓入隊列
enterQueue : function(ele){
if(typeof ele == "undefined" || ele == ""){
return;
}
var pos = (this.tail + 1) % this.capacity;
if(pos == this.head){//判斷隊列是否已滿
return;
}else{
this.list[this.tail] = ele;
this.tail = pos;
}
},
//從隊列中取出頭部數據
delQueue : function(){
if(this.tail == this.head){ //判斷隊列是否為空
return;
}else{
var ele = this.list[this.head];
this.head = (this.head + 1) % this.capacity;
return ele;
}
},
//查詢隊列中是否存在此元素,存在返回下標,不存在返回-1
find : function(ele){
var pos = this.head;
while(pos != this.tail){
if(this.list[pos] == ele){
return pos;
}else{
pos = (pos + 1) % this.capacity;
}
}
return -1;
},
//返回隊列中的元素個數
queueSize : function(){
return (this.tail - this.head + this.capacity) % this.capacity;
},
//清空隊列
clearQueue : function(){
this.head = 0;
this.tail = 0;
},
//判斷隊列是否為空
isEmpty : function(){
if(this.head == this.tail){
return true;
}else{
return false;
}
}
}

JavaScript技術javascript中利用數組實現的循環隊列代碼,轉載需保留來源!

鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。

主站蜘蛛池模板: 成人在线观看网址 | 在线欧美一区 | 国产精品揄拍一区二区久久国内亚洲精 | 欧美午夜影院 | 最新日韩在线 | 午夜精品一区二区三区在线播放 | 999国产精品视频免费 | wwwxxx日本在线观看 | 中文字幕亚洲区一区二 | 久久精品国产一区二区三区 | 中文字幕在线观看精品 | 国产成人在线一区 | 一区二区三区免费 | 一级毛片观看 | 久久综合久色欧美综合狠狠 | 狠狠操婷婷| 成人亚洲精品 | 91精品观看 | 国产日韩久久久久69影院 | 久草中文在线 | 国产精品一区2区 | 91精品国产91| 中文字幕在线不卡播放 | 欧洲亚洲精品久久久久 | 男人久久天堂 | 2018国产精品 | 欧美久久精品一级黑人c片 91免费在线视频 | 欧美成人手机视频 | 日本人和亚洲人zjzjhd | 精品一区二区三区入口 | 粉嫩一区二区三区国产精品 | 日韩欧美一区二区三区免费观看 | 欧美久久久久久 | 亚洲欧美日韩精品久久亚洲区 | 狠狠插天天干 | 香蕉二区| 91精品国产91久久久久久密臀 | 国产精品99久久久久久久vr | 久久精品亚洲 | 99久久成人 | 国产99小视频 |