Ejemplo n.º 1
0
        public Type Pop()//出栈
        {
            Type dt = top.Data;

            top = top.Next;
            return(dt);
        }
Ejemplo n.º 2
0
        public string GetStackALLDate(string sname)
        {
            string str = "  】";

            if (IsEmpty())
            {
                str = sname + " stack is null";
            }
            CStacknode <Type> p = top;

            while (p != null)
            {
                str = p.Data + "    " + str;
                p   = p.Next;
            }
            str = "【  " + str + "\r\n";
            str = str + "---------------------------------------" + "\r\n";
            return(str);
        }
Ejemplo n.º 3
0
 public bool Push(Type item)//入栈
 {
     top = new CStacknode <Type>(item, top);
     return(true);
 }
Ejemplo n.º 4
0
        }                                     //判栈满

        public CLinkStack()
        {
            top = null;
        }
Ejemplo n.º 5
0
 //--------------------------------------------------------------------------------
 public void MakeEmpty()
 {
     top = null;
 }                                      //清空
Ejemplo n.º 6
0
 public CStacknode(Type data, CStacknode <Type> next)
 {
     this.data = data;
     this.next = next;
 }
Ejemplo n.º 7
0
 public CStacknode(Type data)
 {
     this.data = data;
     next      = null;
 }
Ejemplo n.º 8
0
 //--------------------------------------------------------------------------------
 public CStacknode()
 {
     next = null;
 }