Question

In: Computer Science

1.Implement the generic PriorityQueueInterface in a class named PriorityQueue. Note: it must be named PriorityQueue The...

1.Implement the generic PriorityQueueInterface in a class named PriorityQueue. Note: it must be named PriorityQueue The priority queue MUST be implemented using a linked list.

2 test program

checks that a newly constructed priority queue is empty

o checks that a queue with one item in it is not empty

o checks that items are correctly entered that would go at the front of the queue

o checks that items are correctly entered that would go at the end of the queue

o checks that items are correctly entered that would go in the middle of the queue

o checks that you can enqueue several items, dequeue ALL the items, check that the queue is now empty, enqueue new items, display the queue – in other words, give your code and queue a real workout.

// PriorityQueueInterface is here

public interface QueueInterface<T> {
  
public void enqueue(T item); // Add to the rear of the queue.
public T dequeue(); // Delete and return the item
// at the front of the queue.
public T front(); // Return the item at the front
// of the queue, do not delete.
  
public boolean isEmpty(); // Check if the queue is empty.
public boolean isFull(); // Check if the queue is full.
  
public String toString(); // Return a printable display
// of the items in the queue.
}

//integernode class is here

public class IntegerNode implements Comparable<IntegerNode>
{
  
Integer i; // The integer stored in the node.
  
public IntegerNode(Integer x) // The constructor initializes
{ // the instance variable i.
this.i = x;
}

/*
* compareTo() compares this objects integer to
* another (rhs - right hand side)
* objects integer value.
*
* If this node has a smaller integer value
* it has higher priority and in this sense
* is "bigger" than the rhs object and compareTo()
* returns +1.
*/   

public int compareTo(IntegerNode rhs)
{
if (this.i > rhs.i) // This object has lower priority
return -1; // ... so return -1.
else if (this.i < rhs.i) // This object has higher priority
return 1; // ... so return +1.
else // The objects have equal priority
return 0; // ... so return 0.
}

  
public String toString()
{ // The object's string representation
return i.toString(); // is just that of its integer.
}
}

Solutions

Expert Solution

priority queue:In computer science, a priority queue is an abstract data type similar to a regular queue or stack data structure in which each element additionally has a "priority" associated with it.

Priority Queue Using Linked List:

Operations on priority Queue:

1.push():inserts new data into a queue.

2.pop():removes the element with highest priority in queue.

3.peek()/top():gets the element with highest priority in queue without removing it.

The list is so created that the highest priority element is always at the head of the list. The list is arranged in descending order of elements based on their priority of elements in O(1) time.

To insert an element we traverse the list and find the proper position to insert the node so that the overall order of the priority queue is maintained. This makes the PUSH operation take O(N)time. The POP operation and PEEK operation are performed in constant time.

The ALGORITHM is mentioned below:

Algorithm:

PUSH(HEAD,DATA,PRIORITY)

step1:

create new node with DATA and PRIORITY

Step2:

check if HEAD has lower priority.if true follow Steps 3-4 and end.else goto Step 5.

step 3:

NEW -> NEXT = HEAD

step 4:

HEAD = NEW

step5:

Set TEMP to head of the list

step6:

While TEMP -> NEXT != NULL and TEMP ->NEXT -> PRIORITY > PRIORITY

step 7:

TEMP= TEMP -> NEXT

[END OF LOOP]

step 8:

NEW-> NEXT=TEMP ->NEXT

step 9:

TEMP ->NEXT = NEW

step 10:

End

POP(HEAD)

step 2:set the head of the list to the next node in the list. HEAD =HEAD -> NEXT.

step 3: Free the node at the head of the list

step 4:End

PEEK(HEAD):

step 1: Return HEAD -> DATA

step 2:End

Implementation of ALGORITHM:

//code to implement priority queue

import java.util.*;

class PriorityQueue

{

static class Node{

int data;

int priority;

Node next;

}

static Node node= new Node();

//function to create new node

static Node newNode(int d, int p)

{

Node temp= new Node();

temp.data=d;

temp.priority=p;

temp.next=null;

return temp;

}

//return the value at head

static int peek(Node head)

{

return (head).data;

}

//remove the element with highest priority from the list

static Node pop(Node head)

{

Node temp = head;

(head) = (head).next;

return head;

}

//function to push according to priority

static Node push(Node head, int d, int p)

{

Node start = (head);

//create new Node

Node temp = newNode(d, p);

//special case: The head of list has lesser priority that new node. so insert new node before head node and change head node.

if((head).priority > p) {

temp.next= head;

(head) = temp;

}

else

{

while (start.next != null && start.next.priority <p) {

start = start.next;

}

temp.next=start.next;

start.next=temp;

}

return head;

}

//function to check is list is empty

static int isEmpty(Node head)

{

return((head) == null)?1:0;

}

//driver code

public static void main(String args[])

{

//create priority queue

//7.4.5.6

Node pq= newNode(4,1);

pq= push(pq,5,2);

pq= push(pq,6,3);

pq=push(pq,7,0);

while(isEmpty(pq)==0){

System.out.printf("%d",peek(pq));

pq=pop(pq);

}

}

}

output:

7 4 5 6


Related Solutions

#data structure 1.Implement the generic PriorityQueueInterface in a class named PriorityQueue. Note: it must be named...
#data structure 1.Implement the generic PriorityQueueInterface in a class named PriorityQueue. Note: it must be named PriorityQueue The priority queue MUST be implemented using a linked list. 2 test program checks that a newly constructed priority queue is empty o checks that a queue with one item in it is not empty o checks that items are correctly entered that would go at the front of the queue o checks that items are correctly entered that would go at the...
You shall implement a class named DnaSequence, which models a sequence of DNA. Requirements: You must...
You shall implement a class named DnaSequence, which models a sequence of DNA. Requirements: You must implement all public constructors and methods described in this documentation. Your class must have only 1 field, and it must be a private char[]. No print statements are allowed anywhere in your class. The constructors require you to discard any character that is not 'A', 'C', 'G', or 'T'. This is very easily accomplished using a regular expression in String.replaceAll: // returns a String...
Implement our own stack class patterned after Java's Stack class. Start with a generic class that...
Implement our own stack class patterned after Java's Stack class. Start with a generic class that uses an ArrayList for storage of the elements: public class StackBox<E> { ArrayList<E> stack = new ArrayList<E>(); } Implement the following methods in StackBox: boolean empty() Tests if this stack is empty. E push(E item) Pushes an item onto the top of this stack. Returns item pushed. E pop() Removes the object at the top of this stack and returns that object as the...
StackBox Implement our own stack class patterned after Java's Stack class. Start with a generic class...
StackBox Implement our own stack class patterned after Java's Stack class. Start with a generic class that uses an ArrayList for storage of the elements: public class StackBox<E> { ArrayList<E> stack = new ArrayList<E>(); } Implement the following methods in StackBox: boolean empty() Tests if this stack is empty. E push(E item) Pushes an item onto the top of this stack. Returns item pushed. E pop() Removes the object at the top of this stack and returns that object as...
1. Define a class counterType to implement a counter. Your class must have a private data...
1. Define a class counterType to implement a counter. Your class must have a private data member counter of type int and functions to set counter to the value specified by the user, initialize counter to 0, retrieve the value of counter, and increment and decrement counter by one. The value of counter must be nonnegative. 2. Some of the characteristics of a book are the title, author(s), publisher, ISBN, price, and year of publication. Design a class bookType that...
Implement a class named Parade using an ArrayList, which will manage instances of class Clown. Each...
Implement a class named Parade using an ArrayList, which will manage instances of class Clown. Each Clown only needs to be identified by a String for her/his name. Always join a new Clown to the end of the Parade. Only the Clown at the head of the Parade (the first one) can leave the Parade. Create a test application to demonstrate building a parade of 3 or 4 clowns (include your own name), then removing 1 or 2, then adding...
Implement a generic MyStack class using templates. A stack allows elements to be added and removed...
Implement a generic MyStack class using templates. A stack allows elements to be added and removed in a last-in, first-out (LIFO) manner. Stacks have an operation called push to place elements at the top of the stack, and another operation called pop to remove and return the element at the top of the stack. The only element on the stack that may be referenced is the one on the top. This means that if two elements are pushed onto the...
In java design and code a class named comparableTriangle that extends Triangle and implements Comparable. Implement...
In java design and code a class named comparableTriangle that extends Triangle and implements Comparable. Implement the compareTo method to compare the triangles on the basis of similarity. Draw the UML diagram for your classes. Write a Driver class (class which instantiates the comparableTriangle objects) to determine if two instances of ComparableTriangle objects are similar (sample output below). It should prompt the user to enter the 3 sides of each triangle and then display whether or not the are similar...
You shall implement six static methods in a class named BasicBioinformatics. Each of the methods will...
You shall implement six static methods in a class named BasicBioinformatics. Each of the methods will perform some analysis of data considered to be DNA. DNA shall be represented arrays of chars containing only the characters A, C, G and T. In addition to the six methods you will implement, six other methods exist in the class, which use Strings instead of char arrays to represent DNA. These other methods simply invoke the methods you are to implement, so all...
Program in Java Create a class and name it MyArray and implement following method. * NOTE:...
Program in Java Create a class and name it MyArray and implement following method. * NOTE: if you need more methods, including insert(), display(), etc. you can also implement those. Method name: getKthMin(int k) This method receives an integer k and returns k-th minimum value stored in the array. * NOTE: Items in the array are not sorted. If you need to sort them, you can implement any desired sorting algorithm (Do not use Java's default sorting methods). Example: Items...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT