您好,登錄后才能下訂單哦!
數(shù)據(jù)結(jié)構(gòu)用兩個棧實(shí)現(xiàn)一個隊(duì)列的實(shí)例
棧是先進(jìn)后出,隊(duì)列是先進(jìn)先出
每次元素都push在st1中,pop的時候如果st2為空,將st1的棧頂元素放在st2的棧底,這樣st1的所有元素都放在st2中,st1的棧底就是st2的棧頂,pop st2的棧頂,這樣就滿足了隊(duì)列的先進(jìn)先出。
#include <iostream> using namespace std; #include <stack> #include <stdlib.h> template <class T> class SQueue { public: void Push(const T& value); T Pop(); private: stack<T> st1; stack<T> st2; }; template <class T> T SQueue<T>::Pop() { if (st2.size() <= 0) { if (st1.size() == 0) { exit(1); } while ((st1.size() > 0)) { T& top = st1.top(); st2.push(top); st1.pop(); } } T head = st2.top(); st2.pop(); return head; } template <class T> void SQueue<T>::Push(const T& value) { st1.push(value); } int main() { SQueue<int> sq; for (int i = 0; i < 10; ++i) { sq.Push(i); } for (int i = 0; i < 5; ++i) { cout << sq.Pop() << " "; } for (int i = 0; i < 5; ++i) //分兩次驗(yàn)證 { cout << sq.Pop() << " "; } cout << endl; system("pause"); return 0; }
感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。