C++_homework_StackSort

來源:互聯網
上載者:User

標籤:before   top   col   size   tmp   splay   ons   post   main   

顧名思義(?)類似於單調棧?維護一個單調遞減的棧。一旦準備入棧的元素大於棧頂元素,棧一直彈出直到準備入棧的元素小於等於棧頂元素,彈出的元素壓入另一個tmp棧中。

 1 #include <iostream> 2 #include <stack> 3 #include <cstdlib> 4 #include <ctime> 5 using namespace std; 6  7 void StackSort(stack<int>& s) 8 { 9     stack<int> tmp;10     while(!s.empty()){11         tmp.push(s.top());12         s.pop();13     }14     while(!tmp.empty()){15         if(s.empty()){s.push(tmp.top());tmp.pop();}16         else{17             int x=tmp.top();18             tmp.pop();19             if(x<=s.top())   s.push(x);20             else{21                 while(!s.empty()&&x>s.top()){22                     tmp.push(s.top());23                     s.pop();24                 }25                 s.push(x);26             }27         }28     }29 }30 31 void display(stack<int> s)32 { while (!s.empty()) cout<<s.top()<<endl,s.pop();33   cout<<endl;34 }35 int main(int argc,char**argv)36 { const int n{20};37   srand((unsigned)time(0));38   stack<int> s;39   for (int i{0};i<n;i++) s.push(rand()%100);40   cout<<"Before sorting:"<<endl<<endl;  display(s);41   cout<<"After sorting:"<<endl; StackSort(s); display(s);42   return 0;43 }

s:

tmp:  8 7 9 

 

s:   9

tmp:  8 7

 

s:   9 7

tmp: 8

 

s:  9 8

tmp: 7

 

s:  9 8 7

tmp:  

C++_homework_StackSort

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.