一区二区久久-一区二区三区www-一区二区三区久久-一区二区三区久久精品-麻豆国产一区二区在线观看-麻豆国产视频

javascript中利用數(shù)組實現(xiàn)的循環(huán)隊列代碼

//循環(huán)隊列
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;
}
},
//從隊列中取出頭部數(shù)據(jù)
delQueue : function(){
if(this.tail == this.head){ //判斷隊列是否為空
return;
}else{
var ele = this.list[this.head];
this.head = (this.head + 1) % this.capacity;
return ele;
}
},
//查詢隊列中是否存在此元素,存在返回下標(biāo),不存在返回-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;
},
//返回隊列中的元素個數(shù)
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技術(shù)javascript中利用數(shù)組實現(xiàn)的循環(huán)隊列代碼,轉(zhuǎn)載需保留來源!

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

主站蜘蛛池模板: 国产精品人成 | 成人精品一级毛片 | 国产视频高清 | 国产精品久久久久影院色 | a男人的天堂久久a毛片 | 美女骚网站 | 婷婷丁香六月 | 一区二区三区国产 | 亚洲一区中文字幕在线 | 国产精品麻豆久久久 | 亚洲欧美一区二区三区四区 | 国产精品1 | 在线视频精品视频 | 99色网| 四虎永久免费最新在线 | 四虎精品影院4hutv四虎 | 欧美激情午夜 | 久久久国产乱子伦精品 | 综合图色 | 国产精品国产午夜免费福利看 | 亚州怡红院 | 91刘亦菲精品福利在线 | 天堂资源在线官网资源 | 欧美在线一二三区 | 黄色视屏在线播放 | 深夜福利小视频 | 久久综合九色综合狠狠97 | 多色视频 | 亚洲一区二区三区深夜天堂 | 色多多免费观看 | 夜色成人网 | 高清视频 一区二区三区四区 | 日本一区二区三区免费高清在线 | 国产日韩91 | 乱爱妇乱子伦精品 | 国语自产精品视频在线区 | 日韩 国产 欧美视频一区二区三区 | 免费一级 一片一毛片 | 国产成人精品视频在放 | 草草草在线观看 | 色老板最新网站视频地址 |