Stack and Queue are both ICollection : Stack « Data Structure « C# / CSharp Tutorial

Home
C# / CSharp Tutorial
1.Language Basics
2.Data Type
3.Operator
4.Statement
5.String
6.struct
7.Class
8.Operator Overload
9.delegate
10.Attribute
11.Data Structure
12.Assembly
13.Date Time
14.Development
15.File Directory Stream
16.Preprocessing Directives
17.Regular Expression
18.Generic
19.Reflection
20.Thread
21.I18N Internationalization
22.LINQ
23.GUI Windows Forms
24.Windows Presentation Foundation
25.Windows Communication Foundation
26.Workflow
27.2D
28.Design Patterns
29.Windows
30.XML
31.XML LINQ
32.ADO.Net
33.Network
34.Directory Services
35.Security
36.unsafe
C# / C Sharp
C# / C Sharp by API
C# / CSharp Open Source
C# / CSharp Tutorial » Data Structure » Stack 
11.39.5.Stack and Queue are both ICollection
using System;
using System.Collections;

  class Class1
  {
    [STAThread]
    static void Main(string[] args)
    {
        string input = "this is a test";
            string[] names = input.Split' ' );

            PrintCollection"Input", names );

            TestStacknames );
            TestQueuenames );
    }

        static void PrintCollectionstring name, ICollection coll )
        {
            Console.Writename + ": " );
            foreachobject elem in coll )
            {
                Console.Writeelem.ToString() ' ' );
            }
        }
        static void TestStackstring[] names )
        {
            Stack nameStack = new Stack();

            foreachstring name in names )
            {
                nameStack.Pushname );
                Console.WriteLine"Pushed value: {0}", name );
                PrintCollection"New Stack", nameStack );
            }
            int pops = Int32.ParseConsole.ReadLine() );
            forint i = 1; i <= pops; i++ )
            {
                Console.WriteLine"Popped value: " + nameStack.Pop());
                PrintCollection"Stack after " + i.ToString() " pops", nameStack );
            }
        }
        static void TestQueuestring[] names )
        {
            Queue nameQueue = new Queue();
            foreachstring name in names )
            {
                nameQueue.Enqueuename );
                Console.WriteLine"Enqueued value: {0}", name );
                PrintCollection"New Queue", nameQueue );
            }

            Console.Write"Dequeue how many items? " );
            int dequeues = Int32.ParseConsole.ReadLine() );
            forint i = 1; i <= dequeues; i++ )
            {
                Console.WriteLine"Dequeued value: " + nameQueue.Dequeue());
                PrintCollection"Queue after ", nameQueue );
            }
        }
  }
11.39.Stack
11.39.1.Push and pop value
11.39.2.Clear a stack
11.39.3.Pop and Peek
11.39.4.Stack And Queue
11.39.5.Stack and Queue are both ICollection
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.