, , , , , , , , ,

[SOLVED] Eecs 281 project 2 part b – priority queues

$25

File Name: Eecs_281_project_2_part_b_–_priority_queues.zip
File Size: 423.9 KB

Rate this Assignment

OverviewFor this part of the project, you will implement your own priority queue containers. Using the interface defined in Eecs281PQ.h and the extendable test module in testPQ.cpp , you can build and test:
A sorted array priority queue (in SortedPQ.h )
A binary heap priority queue (in BinaryPQ.h )
A pairing heap priority queue (in PairingPQ.h )
Each priority queue is given in a partially complete header file and the goal is to complete the all the definitions in each file of functions that are declared in Eecs281PQ.h . All of these files are included in the tarball p2b-priority-queues-files.tgz , and each file specifies more information about its priority queue type, including runtime requirements for each method and a general description of the container.
Also provided is a good implementation of a very bad priority queue approach called the
“Unordered priority queue” in UnorderedPQ.h , which does a linear search for the most extreme element each time it is needed. This PQ is not very efficient but it is correct, so you can test your other priority queue implementations against it to ensure that your other priority queues are returning elements in the correct order.
You are not allowed to modify Eecs281PQ.h in any way. Nor are you allowed to change the interface (names, parameters, return types) that we give you in any of the provided headers. You are allowed to add your own private helper functions and variables to the other header files as needed, so long as you still follow the requirements outlined in both the spec and the comments in the provided files.
These priority queues are templated, and can take in an optional comparison functor type, COMP . Inside the classes, you can access an instance of COMP with this->compare() . All of your priority queues must default to be max priority queues. This means that if you use the default comparison functor with an integer PQ, std::less<int> , the PQ will return the largest integer
when you call pq.top() . When done correctly, the definition of most extreme is entirely dependent on the comparison functor, so if std::greater<int> is used, a min-PQ returning the smallest integer should be created.
The definition is as follows:
If A is any element in the priority queue, and pq.top() returns the “most extreme” element. this->compare(top(), A) should always return false ( A is “less extreme” than pq.top() ).
It might seem counterintuitive that std::less<> yields a max-PQ, but this is consistent with the way that the std::priority_queue<> works (and other STL functions that take custom comparators, like std::sort() ).
The autograder will compile your priority queue implementations with a fresh copy of
Eecs281PQ.h and a driver program that you will not see, to test that you have correctly and fully implemented them. To ensure that this is possible (and that you do not lose credit for these tests), do not define a main function in one of the PQ headers, or any file included in your submission.
Eecs281PQ interfaceMember VariablesMember Variable Description
COMP_FUNCTOR compare
// See “Implementing the Priority Queues”
Member FunctionsMember Function Description
void push(const TYPE& val) // inserts a new element into the priority queue
const TYPE &top()
// returns the highest priority element in the priority queue
void pop()
// removes the highest priority element from the priority queue
size_t size()
// returns the size of the priority queue
bool empty()
// returns true if the priority queue is empty, false otherwise
Unordered Priority QueueThe unordered priority queue implements the priority queue interface by maintaining data in an unordered vector<> . This has already been implemented for you, and you can use the code to help you understand how to use the comparison functor, etc. Complexities and details are in UnorderedPQ.h and UnorderedFastPQ.h .
The unordered fast priority queue takes advantage of the fact that common priority queue usage involves a call to .top() followed by a call to .pop() . The “fast” version performs the linear search required by .top() , but stores the location of the most extreme element so a subsequent call to .pop() can access the element in constant time, if the container has not been modified in between calls.
Sorted Priority QueueThe sorted priority queue implements the priority queue interface by maintaining a sorted vector<> . Complexities and details are in SortedPQ.h . This should be written almost entirely
using the STL. The number of lines of code needed to get this working is fairly low, generally
n<=10.
Binary Heap Priority Queue. Add a “dummy” element at index 0, make sure you never allow access to it, and make sure that .size() and .empty() work properly.
. Translate the code from 1-based to 0-based. This is the best solution but the hardest.
. Use a function to translate indices for you. Instead of accessing data[i] , use
.getElement(i) . The code for .getElement() is given below (both versions are needed).Pairing Heap Priority QueuePairing heaps are an advanced heap data structure that can be quite fast. In order to implement the pairing heap priority queue, read these two papers that describe the data structure:
. Fredman Paper
. Sahni Paper
Below is the pairing heap modeled as a tree, in which each node is greater than all of its children:To implement this structure, the pairing heap will use child and sibling pointers to have a structure like this:Implementing the Priority QueuesLook through the included header files: you need to add code in SortedPQ.h , BinaryPQ.h , and
PairingPQ.h , and this is the order that we would suggest implementing the different priority queues. Each of these files has TODO comments where you need to make changes. We wanted to provide you with files that would compile when you receive them, so some of the changes involve deleting and/or changing lines that were only placed there to make sure that they compile. For example, if a function was supposed to return an integer, NOT having a return statement that returns an integer would produce a compiler error. Look at UnorderedPQ.h as an example, as itʼs already completed for you.
When you write the SortedPQ you cannot use std::binary_search() from the STL, but you wouldnʼt want to: it only returns a bool to tell you if something is already in the container or not!
Instead use the std::lower_bound() algorithm (which returns an iterator), and you can also use the std::sort() algorithm – you donʼt have to write your own sorting function. You do however have to pass the this->compare functor to both std::lower_bound() and std::sort() .
The BinaryPQ is harder to write, and requires a more detailed and careful use of the comparison functor
Compiling and Testing Priority QueuesYou are provided with a test file, testPQ.cpp , which contains examples of unit tests you can run on your priority queues to ensure that they are correct; however, it is not a complete test of your priority queues; for example it does not test .updatePriorities() . It is especially lacking in testing the PairingPQ class, since it does not have any calls to .addNode() or .updateElt() . You should add code to this file for additional testing.
Using the 281 Makefile , you can compile testPQ.cpp by simply entering:or

Reviews

There are no reviews yet.

Only logged in customers who have purchased this product may leave a review.

Shopping Cart
[SOLVED] Eecs 281 project 2 part b – priority queues
$25