首页 > 编程 > C > 正文

C语言实现颠倒栈的方法

2020-01-26 15:18:28
字体:
来源:转载
供稿:网友

本文实例讲述了C语言实现颠倒栈的方法,很实用的技巧。分享给大家供大家参考之用。

具体实现方法如下:

#include <iostream>#include <iterator>#include <algorithm>#include <vector>#include <stack>using namespace std;void initializeStack(stack<int> &st){ for(int i = 1; i <= 5; i++) st.push(i);}void addToStack(stack<int>& st, int i){ if(st.empty()) st.push(i); else { int top = st.top(); st.pop(); addToStack(st, i); st.push(top); }}void reverseStack(stack<int> &st){ if(st.empty()) return; int top = st.top(); st.pop(); reverseStack(st); addToStack(st, top);}void print(stack<int> st){ if(st.empty()) return; else { int top = st.top(); st.pop(); print(st); cout << top << " "; }}void main(){ stack<int> st; initializeStack(st); print(st); cout << endl; reverseStack(st); print(st);}

希望本文所述对大家C程序算法设计的学习有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选