स्टैक में तत्वों को जोड़ने के लिए पुश ऑपरेशन के साथ स्टैक सेट करें -
Stack st = new Stack(); st.Push('A'); st.Push('M'); st.Push('G'); st.Push('W');
स्टैक से तत्वों को पॉप करने के लिए, पॉप () विधि का उपयोग करें -
सेंट पॉप ();
सेंट पॉप ();
पुश और पॉप ऑपरेशंस के साथ स्टैक को लागू करने के लिए निम्नलिखित एक उदाहरण है -
उदाहरण
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 + " "); } } } }
आउटपुट
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