真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

JavaScript基于數(shù)組實(shí)現(xiàn)的棧與隊(duì)列操作示例

本文實(shí)例講述了JavaScript基于數(shù)組實(shí)現(xiàn)的棧與隊(duì)列操作。分享給大家供大家參考,具體如下:

創(chuàng)新互聯(lián)建站成立與2013年,是專業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項(xiàng)目網(wǎng)站設(shè)計(jì)制作、成都網(wǎng)站制作網(wǎng)站策劃,項(xiàng)目實(shí)施與項(xiàng)目整合能力。我們以讓每一個(gè)夢(mèng)想脫穎而出為使命,1280元咸豐做網(wǎng)站,已為上家服務(wù),為咸豐各地企業(yè)和個(gè)人服務(wù),聯(lián)系電話:18982081108

棧數(shù)據(jù)結(jié)構(gòu):

1、 后進(jìn)先出 隊(duì)列在列表的尾端添加項(xiàng),從列表的尾端移除項(xiàng)

隊(duì)列圖:

JavaScript基于數(shù)組實(shí)現(xiàn)的棧與隊(duì)列操作示例

實(shí)現(xiàn)代碼:

var colors = ["red","blue"];
colors.push("brown");   //從隊(duì)列尾部添加一項(xiàng)
console.log(colors);//[ 'red', 'blue', 'brown' ]
var item =colors.pop();  //從隊(duì)列尾部移出一項(xiàng)
console.log(colors);//[ 'red', 'blue' ]

2. 后進(jìn)先出 隊(duì)列在列表的首端添加項(xiàng),從列表的首端移除項(xiàng)

隊(duì)列圖:

JavaScript基于數(shù)組實(shí)現(xiàn)的棧與隊(duì)列操作示例

實(shí)現(xiàn)代碼:

var colors=["red","blue"];
colors.unshift("green");   //從隊(duì)列的前端添加一項(xiàng)
console.log(colors);//[ 'green', 'red', 'blue' ]
colors.shift();   //從隊(duì)列的前端移除一項(xiàng)
console.log(colors);//[ 'red', 'blue' ]

3. 先進(jìn)先出 隊(duì)列在列表的末端添加項(xiàng),從列表的首端移除項(xiàng)

隊(duì)列圖:

JavaScript基于數(shù)組實(shí)現(xiàn)的棧與隊(duì)列操作示例

實(shí)現(xiàn)代碼:

var colors=new Array();
var count=colors.push("red","green"); //從隊(duì)列尾部推入兩項(xiàng)
console.log(count);//2
var count=colors.push("black"); //從隊(duì)列尾部推入另一項(xiàng)
console.log(colors);//[ 'red', 'green', 'black' ]
console.log(count);//3
var item=colors.shift();  //取得隊(duì)列的第一項(xiàng)
console.log(item);//red
console.log(colors);//[ 'green', 'black' ]

4. 先進(jìn)先出 隊(duì)列在列表的首端添加項(xiàng),從列表的尾端移除項(xiàng)

隊(duì)列圖:

JavaScript基于數(shù)組實(shí)現(xiàn)的棧與隊(duì)列操作示例

實(shí)現(xiàn)代碼:

var colors=new Array();  //創(chuàng)建一個(gè)數(shù)組
var count=colors.unshift("red","green");  //從隊(duì)列首部添加兩項(xiàng)
console.log(colors);//[ 'red', 'green' ]
count =colors.unshift("black"); //從隊(duì)列首部添加另一項(xiàng)
console.log(colors);//[ 'black', 'red', 'green' ]
var item=colors.pop();    //從隊(duì)列尾部移出一項(xiàng)
console.log(colors);//[ 'black', 'red' ]

更多關(guān)于JavaScript相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《JavaScript數(shù)據(jù)結(jié)構(gòu)與算法技巧總結(jié)》、《JavaScript數(shù)學(xué)運(yùn)算用法總結(jié)》、《JavaScript排序算法總結(jié)》、《JavaScript遍歷算法與技巧總結(jié)》、《JavaScript查找算法技巧總結(jié)》及《JavaScript錯(cuò)誤與調(diào)試技巧總結(jié)》

希望本文所述對(duì)大家JavaScript程序設(shè)計(jì)有所幫助。


標(biāo)題名稱:JavaScript基于數(shù)組實(shí)現(xiàn)的棧與隊(duì)列操作示例
文章網(wǎng)址:http://weahome.cn/article/jhepch.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部