码迷,mamicode.com
首页 > Windows程序 > 详细

36. C# -- 堆栈(stack)

时间:2015-05-25 20:38:59      阅读:145      评论:0      收藏:0      [点我收藏+]

标签: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("Push V, H to the stack.");
            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 3 values ");
st.Pop();
st.Pop();
st.Pop();
            Console.WriteLine("Current stack: ");
            foreach (char c in st)
{
                Console.Write(c + " ");
}
            Console.ReadLine();
}
}
}

参考:

http://www.2cto.com/kf/201505/397728.html

 


本文出自 “Ricky's Blog” 博客,请务必保留此出处http://57388.blog.51cto.com/47388/1655017

36. C# -- 堆栈(stack)

标签:c#

原文地址:http://57388.blog.51cto.com/47388/1655017

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!