Advertisement
newb_ie

stack queue

Aug 16th, 2020
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.09 KB | None | 0 0
  1. /*
  2. ======================
  3. [     ___T_          ]
  4. [    | 6=6 | =>HI :-)]
  5. [    |__o__|         ]
  6. [ >===]__o[===<      ]
  7. [     [o__]          ]
  8. [      .".           ]
  9. [      |_|           ]
  10. [                    ]
  11. ======================
  12.  */
  13.  
  14. #include<bits/stdc++.h>
  15. using namespace std;
  16. using lli = int64_t;
  17. void print_stack(){
  18.     int n;
  19.     cin >> n;
  20.     stack<int> s;
  21.     for(int i = 0; i < n; i++){
  22.         int in;
  23.         cin >> in;
  24.         s.push(in);
  25.     }
  26.     while(!s.empty()){
  27.         cout << s.top() << " ";
  28.         s.pop();
  29.     }
  30. }
  31. void print_queue(){
  32.     queue<int> q;
  33.     int n;
  34.     cin >> n;
  35.     for(int i = 0; i < n; i++){
  36.         int in;
  37.         cin >> in;
  38.         q.push(in);
  39.     }
  40.     while(!q.empty()){
  41.         cout << q.front() << " ";
  42.         q.pop();
  43.     }
  44. }
  45. void string_to_int(){
  46.     string s;
  47.     cin >> s;
  48.     int n = 0;
  49.     stringstream convert(s);
  50.     convert >> n;
  51.     cout << n << "\n";
  52. }
  53. void int_to_string(){
  54.     int n;
  55.     cin >> n;
  56.     string s = to_string(n);
  57.     cout << s << "\n";
  58. }
  59. int main(){
  60.      ios::sync_with_stdio(false);
  61.      cin.tie(nullptr);
  62.      cout.tie(nullptr);
  63.      //print_stack();
  64.      //print_queue();
  65.      //string_to_int();
  66.      int_to_string();
  67. }
  68.  
  69.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement