class MyStack

    {

        //数组容器

        int[] container = new int[100];

        //栈顶元素的索引

        int TopIndex = -1;


        //入栈操作

        public void Push(int newValue)

        {

            if (TopIndex >= 99)

            {

                return ;

            }

            TopIndex++;

            container[TopIndex] = newValue;

        }

        //出栈操作

        public int Pop()

        {

            if (TopIndex < 0)

            {

                return 0;

            }

            var topValue = container[TopIndex];

            TopIndex--;

            return topValue;

        }

    }


01-12 18:38