1. 基礎(chǔ)
10年積累的網(wǎng)站制作、成都網(wǎng)站設(shè)計(jì)經(jīng)驗(yàn),可以快速應(yīng)對(duì)客戶對(duì)網(wǎng)站的新想法和需求。提供各種問(wèn)題對(duì)應(yīng)的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認(rèn)識(shí)你,你也不認(rèn)識(shí)我。但先網(wǎng)站設(shè)計(jì)后付款的網(wǎng)站建設(shè)流程,更有鹿泉免費(fèi)網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。隊(duì)列:先進(jìn)先出,即插入數(shù)據(jù)在隊(duì)尾進(jìn)行,刪除數(shù)據(jù)在隊(duì)頭進(jìn)行;
棧:后進(jìn)先出,即插入與刪除數(shù)據(jù)均在棧頂進(jìn)行。
2. 思路
兩個(gè)棧實(shí)現(xiàn)一個(gè)隊(duì)列的思想:用pushStack棧作為push數(shù)據(jù)的棧,用popStack棧作為pop數(shù)據(jù)的棧。
3. 代碼
#include <iostream> #include <stack> #include <exception> template<class T> class MyQueue { public: void push(const T& num); // 入隊(duì)列 T pop(); // 出隊(duì)列 T top(); private: std::stack<T> pushStack; std::stack<T> popStack; }; template<typename T> void MyQueue<T>::push(const T& num) { pushStack.push(num); } template<typename T> T MyQueue<T>::pop() { if (pushStack.empty() && popStack.empty()) { // 如果二個(gè)棧都為空 throw std::runtime_error("queue is empty"); } else if (popStack.empty()) { // 如果popStack為空,將pushStack全部元素倒popStack while (!pushStack.empty()) { T data = pushStack.top(); // 獲取pushStack棧頂元素 pushStack.pop(); // 出棧 popStack.push(data); } } T data = popStack.top(); popStack.pop(); return data; } template<typename T> T MyQueue<T>::top() { if (pushStack.empty() && popStack.empty()) { // 如果二個(gè)棧都為空 throw std::runtime_error("queue is empty"); } else if (popStack.empty()) { // 如果popStack為空,將pushStack全部元素倒popStack while (!pushStack.empty()) { T data = pushStack.top(); // 獲取pushStack棧頂元素 pushStack.pop(); // 出棧 popStack.push(data); } } else { // 如果popStack不為空的話直接返回popStack棧頂 T data = popStack.top(); return data; } } int main() { MyQueue<int> myQueue1; myQueue1.push(1); myQueue1.push(2); myQueue1.push(3); myQueue1.push(4); std::cout << "current pop is:" << myQueue1.pop() << std::endl; std::cout << "current pop is:" << myQueue1.pop() << std::endl; std::cout << "current pop is:" << myQueue1.pop() << std::endl; std::cout << "current pop is:" << myQueue1.pop() << std::endl; std::cout << "current pop is:" << myQueue1.pop() << std::endl; return 0; }
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)建站www.rwnh.cn,海內(nèi)外云服務(wù)器15元起步,三天無(wú)理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專(zhuān)為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場(chǎng)景需求。
分享題目:C++利用兩個(gè)棧實(shí)現(xiàn)隊(duì)列的方法-創(chuàng)新互聯(lián)
文章源于:http://www.rwnh.cn/article12/dgssdc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供移動(dòng)網(wǎng)站建設(shè)、網(wǎng)站建設(shè)、服務(wù)器托管、網(wǎng)站營(yíng)銷(xiāo)、微信小程序、品牌網(wǎng)站設(shè)計(jì)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容