Queue類中的一些方法使用

2022-09-08 15:09:14 字數 762 閱讀 7155

using

system;

using

system.collections.generic;

using

system.linq;

namespace

個元素"

, q.count);

//取出排在第一的元素

int x =q.dequeue();

console.writeline(

"取出的元素值為:

", x);

//檢視當前佇列中排在第一的元素。注意:只是檢視,元素並沒有離開佇列

x =q.peek();

console.writeline(

"排在佇列第一的元素為:

", x);

//再次取出排在第一的元素

x =q.dequeue();

console.writeline(

"取出的元素值為:

", x);

//這時佇列中剩下的元素有3,4

//遍歷集合,檢視佇列中的元素

console.writeline("

佇列中的元素有:");

foreach (int y in

q)

//清空佇列

q.clear();

console.writeline(

"佇列中有個元素

", q.count);}}

}

此類表示物件的先進先出集合。

佇列queue的一些操作

1.q queue.queue 5 例項化,5為佇列長度 2.q.put haha 將資料加入佇列,計數器 1 3.q.get 取出資料,計數器不變 4.q.join 阻塞,知道計數器為0 5.q.task done 計數器 1 import queue q queue.queue 4 q.put ...

jquery中的一些方法使用

一 概述 inarray map extend each 二 詳細分析 inarray value,array fromindex 從fromindex開始查詢陣列中的索引位置,不包含為 1 map arr,function o 修改陣列中的每乙個值 var arr 1,2,3 map arr,fu...

API中string類中的一些方法

int length 獲取字串的長度 int indexof string 獲取第一出現string字元的位置 int lastindexof string 查詢最後一次出現指定字串的位置 int indexof string,int i 獲取從i位置開始string的位置 string subst...