编程学习网为您整理以下代码实例,主要实现:C# Stack类,希望可以帮到各位朋友。
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 + " ");
}
}
}
}
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!