• [原创]c#,数据结构,栈 Virus


    class Program

        {
            static void Main(string[] args)
            {
                StackX stack = new StackX(10);
                stack.Push(5);
                stack.Push(1);
                stack.Push(3);
                stack.Push(6);
                stack.Push(9);
                Console.WriteLine("现在的元素是:");
                stack.Display();
                stack.Pop();
                stack.Pop(2);
                Console.WriteLine("操作之后的元素是:");
                stack.Display();
              
               Console.ReadLine();
            }

            static void StartMethod()
            {
                Console.WriteLine("start.....");
                for (int i = 10; i < 20; i++)
                {
                    Thread.Sleep(100);
                    //Console.WriteLine(i.ToString());
                }
                Console.WriteLine("end.....");
            }
        }

    using System;
    using System.Collections.Generic;
    using System.Text;

    namespace ConApp1
    {
        class StackX
        {
            private int [] stackx;
            private int maxSize;
            private int top;

          

            public StackX(int max)
            {
                stackx = new int[max];
                maxSize = max;
                top = 0;
            }

            public int Len
            {
                get
                {
                    return stackx.Length;
                }
            }

            public int MaxSize
            {
                get
                {
                    return maxSize;
                }
               
            }

            public bool IsEmpty()
            {
                return (top == 0);
            }

            public bool IsFull()
            {
                return (top == maxSize);
            }

            public bool Push(int intdata)
            {
                if (top == maxSize)
                {
                    Console.WriteLine("The Stack is Full.........");
                    return true;
                }
                stackx[++top] = intdata;
                return true;
            }

            public int Pop()
            {
                if (top == 0)
                {
                    Console.WriteLine("The Stack is Empty.........");
                    return 0;
                }
               
                return stackx[top--];
            }

            public bool Pop(int num)
            {
                if (top == 0)
                {
                    Console.WriteLine("The Stack is Empty.........");
                    return false;
                }
                top = top - num;
                return true;
            }

            public int Peek()
            {
                if (top == 0)
                {
                    Console.WriteLine("The Stack is Empty.........");
                    return 0;
                }
                return stackx[top];
            }

            public void Display()
            {
                for (int i = 0; i < top+1; i++)
                {
                    Console.WriteLine("第"+(i+1)+"个元素是: "+stackx[i].ToString());
                }
            }
        }
    }

    【Blog】http://virusswb.cnblogs.com/

    【MSN】jorden008@hotmail.com

    【说明】转载请标明出处,谢谢

    反馈文章质量,你可以通过快速通道评论:

  • 相关阅读:
    自学华为IoT物联网_10 IoT联接管理平台配置及开发实验1
    自学华为IoT物联网_09 OceanConnect业务流程
    自学华为IoT物联网_08 IoT连接管理平台介绍
    自学华为IoT物联网_07 物联网安全
    自学华为IoT物联网_06 智慧家庭物联网常见问题及解决方案
    自学华为IoT物联网_05 能源工业物联网常见问题及解决方案
    自学华为IoT物联网_04 车联网常见问题及解决方案
    自学华为IoT物联网_03 公共事业物联网常见问题及解决方案
    自学华为IoT物联网_02 常见物联网通信技术
    OpenDCIM-19.01操作手册
  • 原文地址:https://www.cnblogs.com/virusswb/p/853353.html
Copyright © 2020-2023  润新知