A queue class for characters : Queue « Collections Data Structure « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Design Patterns
8.Development Class
9.Event
10.File Stream
11.Generics
12.GUI Windows Form
13.Language Basics
14.LINQ
15.Network
16.Office
17.Reflection
18.Regular Expressions
19.Security
20.Services Event
21.Thread
22.Web Services
23.Windows
24.Windows Presentation Foundation
25.XML
26.XML LINQ
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » Collections Data Structure » QueueScreenshots 
A queue class for characters
A queue class for characters
 
/*
C# A Beginner's Guide
By Schildt

Publisher: Osborne McGraw-Hill
ISBN: 0072133295
*/
// A queue class for characters.   
 
using System; 
 
class Queue {   
  // these are now private 
  char[] q; // this array holds the queue   
  int putloc, getloc; // the put and get indices   
   
  // Construct an empty Queue given its size.  
  public Queue(int size) {   
    q = new char[size+1]// allocate memory for queue   
    putloc = getloc = 0;   
  }   
  
  // Construct a Queue from a Queue.  
  public Queue(Queue ob) {  
    putloc = ob.putloc;  
    getloc = ob.getloc;  
    q = new char[ob.q.Length];  
  
    // copy elements  
    for(int i=getloc+1; i <= putloc; i++)  
      q[i= ob.q[i];  
  }  
  
  // Construct a Queue with initial values.  
  public Queue(char[] a) {  
    putloc = 0;  
    getloc = 0;  
    q = new char[a.Length+1];  
  
    for(int i = 0; i < a.Length; i++put(a[i]);  
  }  
      
  // Put a character into the queue.   
  public void put(char ch) {   
    if(putloc==q.Length-1) {   
      Console.WriteLine(" -- Queue is full.");   
      return;   
    }   
       
    putloc++;   
    q[putloc= ch;   
  }   
   
  // Get a character from the queue.  
  public char get() {   
    if(getloc == putloc) {   
      Console.WriteLine(" -- Queue is empty.");   
      return (char0;    
    }   
     
    getloc++;   
    return q[getloc];   
  }   
}   
   
// Demonstrate the Queue class.   
public class QDemo2 {   
  public static void Main() {   
    // construct 10-element empty queue  
    Queue q1 = new Queue(10);   
  
    char[] name = {'T''o''m'};   
    // construct queue from array  
    Queue q2 = new Queue(name);   
  
    char ch;   
    int i;   
   
    // put some characters into q1   
    for(i=0; i < 10; i++)   
      q1.put((char) ('A' + i));   
  
    // construct queue from another queue  
    Queue q3 = new Queue(q1);  
  
    // Show the queues.  
    Console.Write("Contents of q1: ");   
    for(i=0; i < 10; i++) {    
      ch = q1.get();   
      Console.Write(ch);   
    }   
   
    Console.WriteLine("\n");   
   
    Console.Write("Contents of q2: ");   
    for(i=0; i < 3; i++) {    
      ch = q2.get();   
      Console.Write(ch);   
    }   
   
    Console.WriteLine("\n");   
   
    Console.Write("Contents of q3: ");   
    for(i=0; i < 10; i++) {    
      ch = q3.get();   
      Console.Write(ch);   
    }   
  }   
}


           
         
  
Related examples in the same category
1.Put elements into a queue
2.Put user-defined objects to Queue collection
3.Implements the queue data type using an arrayImplements the queue data type using an array
4.illustrates the use of a Queueillustrates the use of a Queue
5.Queue testQueue test
6.Add exception handling to the queue classesAdd exception handling to the queue classes
7.Demonstrate the Queue classDemonstrate the Queue class
8.Priority Queue
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.