C# – Stack Class

  • Post author:
  • Post category:C#
  • Post comments:2 Comments
C# - Stack Class

C# Stack Class represents a last-in, first-out collection of objects. It is used when you need last-in, first-out access to items. When you add an item to the list, it is called pushing the item and when you remove it, it is called popping the item.

Methods and Properties of the Stack Class

The following table lists some commonly used properties of the Stack class −

Sr.No.Property & Description
1CountGets the number of elements contained in the Stack.

The following table lists some of the commonly used methods of the Stack class −

Sr.No.Method & Description
1public virtual void Clear(); Removes all elements from the Stack.
2public virtual bool Contains(object obj); Determines whether an element is in the Stack.
3public virtual object Peek(); Returns the object at the top of the Stack without removing it.
4public virtual object Pop(); Removes and returns the object at the top of the Stack.
5public virtual void Push(object obj); Inserts an object at the top of the Stack.
6public virtual object[] ToArray();Copies the Stack to a new array.

Example

The following example demonstrates the use of 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("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 values ");
         st.Pop();
         st.Pop();
         st.Pop();
         
         Console.WriteLine("Current stack: ");
         foreach (char c in st) {
            Console.Write(c + " ");
         }
      }
   }
}

When the above code is compiled and executed, it produces the following result −

Current stack: 
W G M A
The next poppable value in stack: H
Current stack: 
H V W G M A
Removing values
Current stack: 
G M A

Next Topic – Click Here

This Post Has 2 Comments

Leave a Reply