使用进栈和出栈操作实现堆栈的 C# 程序
使用进栈操作设置具有向堆栈添加元素功能的堆栈 −
Stack st = new Stack(); st.Push('A'); st.Push('M'); st.Push('G'); st.Push('W');
若要从堆栈弹出元素,请使用 Pop() 方法 −
st.Pop();
st.Pop();
以下示例演示了使用进栈和出栈操作实现堆栈 −
示例
using System; using System.Collections; namespace CollectionsApplication { class Program { static void Main(string[] args) { Stack st = new Stack(); st.Push('A'); st.Push('M'); st.Push('G'); st.Push('W'); Console.WriteLine("Current stack: "); foreach (char c in st) { Console.Write(c + " "); } Console.WriteLine(); st.Push('V'); st.Push('H'); Console.WriteLine("The next poppable value in stack: {0}", st.Peek()); Console.WriteLine("Current stack: "); foreach (char c in st) { Console.Write(c + " "); } Console.WriteLine(); Console.WriteLine("Removing values "); st.Pop(); st.Pop(); st.Pop(); Console.WriteLine("Current stack: "); foreach (char c in st) { Console.Write(c + " "); } } } }
输出
Current stack: W G M A The next poppable value in stack: H Current stack: H V W G M A Removing values Current stack: G M A
广告