创建一个空栈
initStack(); // 初始化栈
入栈
push(Element);
出栈
pop();
查看元素
peek();
// stack
栈和队列
原文:https://www.cnblogs.com/MagicalFool/p/10146859.html