91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

priority_queue怎么在c++中使用

發布時間:2021-05-10 17:35:21 來源:億速云 閱讀:170 作者:Leah 欄目:編程語言

這期內容當中小編將會給大家帶來有關priority_queue怎么在c++中使用,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

首先要包含頭文件#include<queue>, 他和queue不同的就在于我們可以自定義其中數據的優先級, 讓優先級高的排在隊列前面,優先出隊。

優先隊列具有隊列的所有特性,包括隊列的基本操作,只是在這基礎上添加了內部的一個排序,它本質是一個堆實現的。

和隊列基本操作相同:

  • top 訪問隊頭元素

  • empty 隊列是否為空

  • size 返回隊列內元素個數

  • push 插入元素到隊尾 (并排序)

  • emplace 原地構造一個元素并插入隊列

  • pop 彈出隊頭元素

  • swap 交換內容

定義:priority_queue<Type, Container, Functional>
Type 就是數據類型,Container 就是容器類型(Container必須是用數組實現的容器,比如vector,deque等等,但不能用 list。STL里面默認用的是vector),Functional 就是比較的方式。

當需要用自定義的數據類型時才需要傳入這三個參數,使用基本數據類型時,只需要傳入數據類型,默認是大頂堆。
一般是:

//升序隊列
priority_queue <int,vector<int>,greater<int> > q;
//降序隊列
priority_queue <int,vector<int>,less<int> >q;

//greater和less是std實現的兩個仿函數(就是使一個類的使用看上去像一個函數。其實現就是類中實現一個operator(),這個類就有了類似函數的行為,就是一個仿函數類了)

1、基本類型優先隊列的例子:

#include<iostream>
#include <queue>
using namespace std;
int main() 
{
  //對于基礎類型 默認是大頂堆
  priority_queue<int> a; 
  //等同于 priority_queue<int, vector<int>, less<int> > a;
  
  //   這里一定要有空格,不然成了右移運算符↓↓
  priority_queue<int, vector<int>, greater<int> > c; //這樣就是小頂堆
  priority_queue<string> b;

  for (int i = 0; i < 5; i++) 
  {
    a.push(i);
    c.push(i);
  }
  while (!a.empty()) 
  {
    cout << a.top() << ' ';
    a.pop();
  } 
  cout << endl;

  while (!c.empty()) 
  {
    cout << c.top() << ' ';
    c.pop();
  }
  cout << endl;

  b.push("abc");
  b.push("abcd");
  b.push("cbd");
  while (!b.empty()) 
  {
    cout << b.top() << ' ';
    b.pop();
  } 
  cout << endl;
  return 0;
}

運行結果:

4 3 2 1 0
0 1 2 3 4
cbd abcd abc
請按任意鍵繼續. . .

2、用pair做優先隊列元素的例子:

規則:pair的比較,先比較第一個元素,第一個相等比較第二個。

#include <iostream>
#include <queue>
#include <vector>
using namespace std;
int main() 
{
  priority_queue<pair<int, int> > a;
  pair<int, int> b(1, 2);
  pair<int, int> c(1, 3);
  pair<int, int> d(2, 5);
  a.push(d);
  a.push(c);
  a.push(b);
  while (!a.empty()) 
  {
    cout << a.top().first << ' ' << a.top().second << '\n';
    a.pop();
  }
}

運行結果:

2 5
1 3
1 2
請按任意鍵繼續. . .

3、用自定義類型做優先隊列元素的例子

#include <iostream>
#include <queue>
using namespace std;

//方法1
struct tmp1 //運算符重載<
{
  int x;
  tmp1(int a) {x = a;}
  bool operator<(const tmp1& a) const
  {
    return x < a.x; //大頂堆
  }
};

//方法2
struct tmp2 //重寫仿函數
{
  bool operator() (tmp1 a, tmp1 b) 
  {
    return a.x < b.x; //大頂堆
  }
};

int main() 
{
  tmp1 a(1);
  tmp1 b(2);
  tmp1 c(3);
  priority_queue<tmp1> d;
  d.push(b);
  d.push(c);
  d.push(a);
  while (!d.empty()) 
  {
    cout << d.top().x << '\n';
    d.pop();
  }
  cout << endl;

  priority_queue<tmp1, vector<tmp1>, tmp2> f;
  f.push(b);
  f.push(c);
  f.push(a);
  while (!f.empty()) 
  {
    cout << f.top().x << '\n';
    f.pop();
  }
}

運行結果:

3
2
1
 
3
2
1

上述就是小編為大家分享的priority_queue怎么在c++中使用了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

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

AI

山东省| 讷河市| 靖江市| 塔河县| 图木舒克市| 六盘水市| 大兴区| 赤壁市| 南漳县| 丰城市| 鹤壁市| 南城县| 五台县| 定州市| 宝鸡市| 鹤峰县| 大同市| 云南省| 扎赉特旗| 页游| 乳山市| 财经| 溧阳市| 班玛县| 嘉善县| 师宗县| 文登市| 宣汉县| 阳城县| 北票市| 唐河县| 东安县| 沾益县| 凤山县| 信宜市| 岳池县| 昌黎县| 肃南| 嘉荫县| 开鲁县| 崇明县|