溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++中隊列queue怎么用

發(fā)布時間:2022-04-06 14:00:05 來源:億速云 閱讀:138 作者:iii 欄目:開發(fā)技術

這篇文章主要講解了“C++中隊列queue怎么用”,文中的講解內(nèi)容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“C++中隊列queue怎么用”吧!

一、定義

queue是一種容器轉換器模板,調(diào)用#include< queue>即可使用隊列類。

一、queue初始化

queue<Type, Container> (<數(shù)據(jù)類型,容器類型>)

初始化時必須要有數(shù)據(jù)類型,容器可省略,省略時則默認為deque 類型

初始化示例

1:

queue<int>q1;
queue<double>q2;  
queue<char>q3;
//默認為用deque容器實現(xiàn)的queue;

2:

queue<char, list<char>>q1;
//用list容器實現(xiàn)的queue 

queue<int, deque<int>>q2;
 //用deque容器實現(xiàn)的queue

注意:不能用vector容器初始化queue

因為queue轉換器要求容器支持front()、back()、push_back()及 pop_front(),說明queue的數(shù)據(jù)從容器后端入棧而從前端出棧。所以可以使用deque和list對queue初始化,而vector因其缺少pop_front(),不能用于queue。

二、queue常用函數(shù)

1.常用函數(shù)

  1. push() 在隊尾插入一個元素

  2. pop() 刪除隊列第一個元素

  3. size() 返回隊列中元素個數(shù)

  4. empty() 如果隊列空則返回true

  5. front() 返回隊列中的第一個元素

  6. back() 返回隊列中最后一個元素

2.函數(shù)運用示例

1:push()在隊尾插入一個元素

 queue <string> q;
    q.push("first");
    q.push("second");
    cout<<q.front()<<endl;

輸出 first

2:pop() 將隊列中最靠前位置的元素刪除,沒有返回值

queue <string> q;
    q.push("first");
    q.push("second");
    q.pop();
    cout<<q.front()<<endl;

輸出 second 因為 first 已經(jīng)被pop()函數(shù)刪掉了

3:size() 返回隊列中元素個數(shù)

  queue <string> q;
       q.push("first");
       q.push("second");
       cout<<q.size()<<endl;

輸出2,因為隊列中有兩個元素

4:empty() 如果隊列空則返回true

queue <string> q;
    cout<<q.empty()<<endl;
    q.push("first");
    q.push("second");
    cout<<q.empty()<<endl;

分別輸出1和0

最開始隊列為空,返回值為1(ture);

插入兩個元素后,隊列不為空,返回值為0(false);

5:front() 返回隊列中的第一個元素

queue <string> q;
    q.push("first");
    q.push("second");
    cout<<q.front()<<endl;
    q.pop();
    cout<<q.front()<<endl;

第一行輸出first;

第二行輸出second,因為pop()已經(jīng)將first刪除了

6:back() 返回隊列中最后一個元素

queue <string> q;
q.push("first");
q.push("second");
cout<<q.back()<<endl;

輸出最后一個元素second

補充:queue 的基本操作舉例如下

queue入隊,如例:q.push(x); 將x 接到隊列的末端。

queue出隊,如例:q.pop(); 彈出隊列的第一個元素,注意,并不會返回被彈出元素的值。

訪問queue隊首元素,如例:q.front(),即最早被壓入隊列的元素。

訪問queue隊尾元素,如例:q.back(),即最后被壓入隊列的元素。

判斷queue隊列空,如例:q.empty(),當隊列空時,返回true。

訪問隊列中的元素個數(shù),如例:q.size()

#include <cstdlib>
#include <iostream>
#include <queue>
using namespace std;
int main()
{
    int e,n,m;
    queue<int> q1;
    for(int i=0;i<10;i++)
       q1.push(i);
    if(!q1.empty())
    cout<<"dui lie  bu kong\n";
    n=q1.size();
    cout<<n<<endl;
    m=q1.back();
    cout<<m<<endl;
    for(int j=0;j<n;j++)
    {
       e=q1.front();
       cout<<e<<" ";
       q1.pop();
    }
    cout<<endl;
    if(q1.empty())
    cout<<"dui lie  bu kong\n";
    system("PAUSE");
    return 0;
}

運行結果:

dui lie  bu kong
10
9
0 1 2 3 4 5 6 7 8 9
dui lie  bu kong
請按任意鍵繼續(xù). . .

感謝各位的閱讀,以上就是“C++中隊列queue怎么用”的內(nèi)容了,經(jīng)過本文的學習后,相信大家對C++中隊列queue怎么用這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

AI