Due Friday, May 19 at 11:59 pm Pacific
- Submissions received by due date receive a small on-time bonus.
- All students are granted a pre-approved extension or "grace period" of 24 hours after the due date. Late submissions are accepted during the grace period with no penalty.
- The grace period expires Sat, May 20 at 11:59 pm Pacific, after which we cannot accept further late submissions.
- In this course, we express all date/times in Pacific time GMT -7. Our Paperless submission system also displays/records due dates and submission times in Pacific time.
After spending the first half of CS106B learning how to use our provided data structures to accomplish very cool and powerful things, you're now ready to step up to implementing your own data structure!
You will implement the Priority Queue class, a variant on the standard queue that processes elements in order of relative priority. You will explore two different approaches for the class implementation: the first using a simple array and the second using the fancier and more efficient binary heap. You will also analyze and write client code that uses your new data type, and you will reflect on the tradeoffs in the two implementations as well as other alternatives. Neat stuff!
This assignment is to be completed individually. Working in pairs/groups is not permitted.
Learning goals
- Students will be able to implement a class according to a provided interface definition.
- Students will understand how code is written in the role of implementer and how that differs from code written in the role of client.
- Students will gain practice with pointers, dynamic arrays, and explicit management of memory using
new
anddelete
. - Students will develop an appreciation for the need to be vigilant when working with memory and pointers.
- Students will be able to identify tradeoffs in implementation options and to reason about how these choices impact the flexibility and efficiency of the data structure.
Assignment parts
This assignment consists of a warmup debugging exercise, three programming tasks, and reflection questions.
-
Warmup
Practice with debugging on objects and arrays/memory.
-
PQArray
Complete the implementation of a Priority Queue class that stores elements in an array.
-
PQueue Client and Data Science Demos
Solve data processing tasks as a client of the Priority Queue class and play with cool demos that we've provided to see the utility of your new class in analyzing real-world data.
-
PQHeap
Implement a Priority Queue class that stores elements in a binary heap.
-
Ethics of Prioritization and Ranking
Reflect on ethical concerns around use of priority queues in the real world.
Please note that the three programming tasks are not equal when it comes to the amount of work being asked of you. Whereas the PQArray and PQ Client tasks ask you to to complete one function each; the PQHeap task requires you to design and implement the entire class, which consists of 8-10 functions. Please have this in mind when designing your plan of attack!
Getting started
We provide a ZIP of the starter project. Download the zip, extract the files, and double-click the .pro
file to open the project in Qt Creator.
The source files you will edit are pqarray.h/.cpp
, pqclient.cpp
, and pqheap.h/.cpp
. Additionally, you will answer questions in short_answer.txt
.
Resources
Here are resources that will be helpful for this assignment:
- The CS106B Style Guide
- A Guide to Testing Code in CS106B
- Common Build/Run Errors Guide, put together by one of our wonderful section leaders, Jillian Tang.
- Lectures: Lecture 13 on Classes, Lecture 14 on Memory, Lecture 15 on Pointers, Lecture 16 on myStack, Lecture 18 on Heaps
- Section: Classes and Dynamic Memory Usage
- Textbook Chapter 6 Designing Classes, Chapter 11 Pointers and Arrays, Chapter 16.5 Partially ordered trees
Getting help
Working very closely with raw memory and implementing your own classes can get tricky! We recommend drawing lots of diagrams and making maximal use of the debugger.
Look for an announcement on the Ed forum for the YEAH session for this assignment. If you have questions for us, the Ed forum is open 24/7 for general discussion. Always start by searching first to see if your question has already been asked and answered before making a new post. To troubleshoot a problem with your specific code, your best bet is to bring it to the LaIR helper hours or office hours.
Submit
Before you call it done, run through our submit checklist to be sure all your t
s are crossed and i
s dotted. Then upload your completed files to Paperless for grading.
Please submit only the files you edited; for this assignment, these files will be:
pqarray.cpp
andpqarray.h
pqclient.cpp
pqheap.cpp
andpqheap.h
short_answer.txt