码迷,mamicode.com
首页 > 其他好文 > 详细

堆栈和队列

时间:2017-11-16 11:34:24      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:write   ble   span   proxy   zab   bst   abc   void   com   

[Serializable]
[ComVisible(true)]
[DebuggerDisplay("Count = {Count}")]
[DebuggerTypeProxy(typeof(Stack.StackDebugView))]
public class Stack : ICollection, IEnumerable, ICloneable
{}

堆栈 判断回文数

技术分享
        static void Main(string[] args)
        {
            string str = "abcba";
            bool flag = true;
            //for (int i = 0; i <= str.Length/2; i++)
            //{
            //    if (str[i]!=str[str.Length-1-i])
            //    {
            //        flag = false;
            //    }
            //}
           
            Stack list = new Stack();
            string ch;
            for (int i = 0; i < str.Length; i++)
            {
                list.Push(str[i]);
            }
            int pos = 0;
            while(list.Count>0)
            {
                ch = list.Pop().ToString();
                if (ch!=str.Substring(pos,1))
                {
                    flag = false;
                    break;
                }
                pos++;
            }
            Console.WriteLine(flag);
            Console.ReadLine();
        }
View Code

 

堆栈和队列

标签:write   ble   span   proxy   zab   bst   abc   void   com   

原文地址:http://www.cnblogs.com/futengsheng/p/7842830.html

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