亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

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
沧源| 抚顺县| 佛山市| 大连市| 稷山县| 景东| 遂溪县| 黑龙江省| 浦江县| 高尔夫| 得荣县| 盐城市| 西城区| 水城县| 三河市| 永丰县| 彭山县| 合阳县| 沈阳市| 武汉市| 清远市| 建水县| 长顺县| 蒙自县| 大足县| 钦州市| 来凤县| 中牟县| 新密市| 龙岩市| 敦化市| 建阳市| 阿克陶县| 嘉峪关市| 普格县| 龙海市| 白沙| 竹溪县| 木兰县| 汉中市| 邹平县|