The Generic Queue Class : Queue « Collections Data Structure « Java

Home
Java
1.2D Graphics GUI
2.3D
3.Advanced Graphics
4.Ant
5.Apache Common
6.Chart
7.Class
8.Collections Data Structure
9.Data Type
10.Database SQL JDBC
11.Design Pattern
12.Development Class
13.EJB3
14.Email
15.Event
16.File Input Output
17.Game
18.Generics
19.GWT
20.Hibernate
21.I18N
22.J2EE
23.J2ME
24.JavaFX
25.JDK 6
26.JDK 7
27.JNDI LDAP
28.JPA
29.JSP
30.JSTL
31.Language Basics
32.Network Protocol
33.PDF RTF
34.Reflection
35.Regular Expressions
36.Scripting
37.Security
38.Servlets
39.Spring
40.Swing Components
41.Swing JFC
42.SWT JFace Eclipse
43.Threads
44.Tiny Application
45.Velocity
46.Web Services SOA
47.XML
Java » Collections Data Structure » Queue 




The Generic Queue Class
      


import java.util.LinkedList;

class GenQueue<E> {
  private LinkedList<E> list = new LinkedList<E>();

  public void enqueue(E item) {
    list.addLast(item);
  }

  public E dequeue() {
    return list.poll();
  }

  public boolean hasItems() {
    return !list.isEmpty();
  }

  public int size() {
    return list.size();
  }

  public void addItems(GenQueue<? extends E> q) {
    while (q.hasItems())
      list.addLast(q.dequeue());
  }
}

public class GenQueueTest {
  public static void main(String[] args) {
    GenQueue<Employee> empList;
    empList = new GenQueue<Employee>();

    GenQueue<HourlyEmployee> hList;
    hList = new GenQueue<HourlyEmployee>();
    hList.enqueue(new HourlyEmployee("T""D"));
    hList.enqueue(new HourlyEmployee("G""B"));
    hList.enqueue(new HourlyEmployee("F""S"));

    empList.addItems(hList);

    while (empList.hasItems()) {
      Employee emp = empList.dequeue();
      System.out.println(emp.firstName + " " + emp.lastName);
    }
  }
}

class Employee {
  public String lastName;

  public String firstName;

  public Employee() {
  }

  public Employee(String last, String first) {
    this.lastName = last;

    this.firstName = first;
  }

  public String toString() {
    return firstName + " " + lastName;
  }
}

class HourlyEmployee extends Employee {
  public double hourlyRate;

  public HourlyEmployee(String last, String first) {
    super(last, first);
  }
}

   
    
    
    
    
  














Related examples in the same category
1.Priority queuePriority queue
2.Queue data structureQueue data structure
3.Convert a Queue to a List
4.Create a queue using LinkedList class
5.Simple Queue (FIFO) based on LinkedList
6.Blocking Queue
7.Circular Queue
8.Circular Queue extends AbstractList
9.How to extend the collections framework
10.An unbounded {@link TransferQueue} based on linked nodes.
11.This class implements the data structures necessary for an ArrayQueue
12.A circular queue from mina
13.An unbounded TransferQueue based on linked nodes.
14.Rotating queue of fixed size.
15.Allows threads to communicate asynchronously by putting messages into and reading messages out of a synchronized queue.
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.