中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

C++隊列如何從小到大排序

c++
小億
122
2024-01-18 19:33:19
欄目: 編程語言

要使用C++隊列實現從小到大排序,可以使用以下步驟:

  1. 首先,將原始數據依次插入到隊列中。

  2. 接下來,創建一個輔助隊列,并將原始隊列中的第一個元素插入到輔助隊列中。

  3. 然后,從原始隊列中取出第二個元素,并將其與輔助隊列中的元素依次比較。如果原始隊列中的元素比輔助隊列中的元素小,則將其插入到輔助隊列中的合適位置。如果原始隊列中的元素比輔助隊列中的元素大,則將輔助隊列中的元素依次插入到原始隊列中,并將原始隊列中的元素插入到輔助隊列中的合適位置。

  4. 重復步驟3,直到原始隊列為空。

  5. 最后,輔助隊列中的元素就是從小到大排序的結果。

以下是一個示例代碼:

#include <iostream>
#include <queue>

using namespace std;

void sortQueue(queue<int>& q) {
    queue<int> temp;
    while (!q.empty()) {
        int current = q.front();
        q.pop();
        while (!temp.empty() && temp.back() > current) {
            q.push(temp.back());
            temp.pop();
        }
        temp.push(current);
    }
    q = temp;
}

int main() {
    queue<int> q;
    q.push(5);
    q.push(2);
    q.push(8);
    q.push(1);
    q.push(3);

    cout << "原始隊列:";
    while (!q.empty()) {
        cout << q.front() << " ";
        q.pop();
    }
    cout << endl;

    sortQueue(q);

    cout << "排序后的隊列:";
    while (!q.empty()) {
        cout << q.front() << " ";
        q.pop();
    }
    cout << endl;

    return 0;
}

輸出結果為:

原始隊列:5 2 8 1 3 
排序后的隊列:1 2 3 5 8 

0
茂名市| 鹤山市| 乐东| 平阳县| 桂平市| 玛纳斯县| 扎囊县| 新兴县| 克东县| 庄河市| 米泉市| 富蕴县| 湘潭市| 乾安县| 华坪县| 安图县| 古丈县| 石泉县| 兴化市| 深圳市| 株洲市| 合水县| 油尖旺区| 丽水市| 苏尼特右旗| 潼南县| 聂荣县| 黔西县| 资中县| 嘉鱼县| 南雄市| 靖江市| 河西区| 玛沁县| 威远县| 安义县| 潞城市| 乌海市| 西吉县| 胶南市| 保德县|