This document contains the description of the Urgency Queue project assigned to the students in the Fall 2025 CSCI 1302 classes at the University of Georgia.
There are different deadline options for this project. Students who
perform their final submission via the submit command before the date/times listed
below automatically receive the associated Submission-Based (SB) extra credit.
- FRI 2025-10-24 (Oct 24) @ 11:55 PM EST (
+10SB Extra Credit) - SAT 2025-10-25 (Oct 25) @ 11:55 PM EST (
+5SB Extra Credit) - SUN 2025-10-26 (Oct 26) @ 11:55 PM EST (
+0SB Extra Credit)
Read the entirety of this file before beginning your project.
Seriously. Read this entire file before starting.
- Course-Specific Learning Outcomes
- Academic Honesty
- Updates
- Project Description
- Project Requirements & Grading
- How to Download the Project
- Submission Instructions
- Appendix - Suggested Checklist
- Appendix - FAQ
- LO1.c: Create and modify text files and source code using a powerful terminal-based text editor such as Emacs or Vi.
- LO1.d: Use shell commands to compile new and existing software solutions that are organized into multi-level packages and have external dependencies.
- LO2.a: (Partial) Identify redundancy in a set of classes and interfaces, then refactor using inheritance and polymorphism to emphasize code reuse.
- LO2.b: Define, throw, and propagate exceptions appropriately in a software solution.
- LO2.d: Implement new generic methods, interfaces, and classes in a software solution.
- LO2.e: Utilize existing generic methods, interfaces, and classes in a software solution.
- LO3.a: Create and update source code that adheres to established style guidelines.
- LO3.b: Create class, interface, method, and inline documentation that satisfies a set of requirements.
- LO4.a: Design, create, and use interfaces in a software solution.
- LO4.b: Utilize interface-based polymorphism in a software solution.
- LO4.c: (Partial) Design, create, and use inheritance relationships in a software solution.
- LO7.c: Use common abstract data types and structures, including lists, queues, arrays, and stacks in solving typical problems.
You agree to the Academic Honesty policy as outlined in the course syllabus. In accordance with this notice, I must caution you not to fork this repository on GitHub if you have an account. Doing so will more than likely make your copy of the project publicly visible. Please follow the instructions contained in the How to Download the Project section below in order to do your development on Odin. Furthermore, you must adhere to the copyright notice and licensing information at the bottom of this document.
If there has been an update and you have already cloned the project to Odin,
then you can update your copy of the project using the $ git pull
command while inside your project directory.
In this project, you will be providing two different implementations of
the UrgencyQueue interface, which defines different operations that one
should be able to do with a queue of items ordered by their relative level
of urgency.
An urgency queue is an abstract data type that defines urgency-based queue operations. From an external (user) perspective, each urgency queue object maintains a "line" of zero or more items (non-null references to objects of the appropriate type). Unlike a standard queue, which orders its "line" of items according to FIFO (first-in-first-out) semantics, an urgency queue associates a level of urgency with each item and orders its items according to their relative level of urgency.
Each implementation of the UrgencyQueue interface will be a concrete class with specific functional
and non-functional requirements. These classes need to implement UrgencyQueue via a common abstract
parent class.
For this project, you will NOT have access to the .java files for the
interface. Instead, you will have access to the generated API documentation
for the UrgencyQueue interface
(may require a VPN connection to view).
Implementers should make sure that each method functions or behaves as described
by the interface's API documentation.
Implementers are free to implement additional methods in addition
to the ones defined by the interface. However, they should not assume that
users (e.g., graders) will use these additional methods (even if declared with
public visibility) since they are not defined in the interface. These additional
methods may help avoid redundancy and promote code reuse within an implementation.
Based on discussions with past students, we have prepared a Suggested Checklist section in the Appendices which contains some suggestions on how to work through the project from start to finish.
- 1302 TextBook Chapter: Generics
- 1302 TextBook Chapter: Lambda Expressions
java.util.function.PredicateInterface Documentationjava.util.function.ConsumerInterface Documentation
This assignment is worth 100 points. The lowest possible grade is 0, and the highest possible grade is 110 (due to extra credit).
A functional requirement is added to your point total if satisfied. There will be no partial credit given for visual inspection of your code. Points are assigned for each test case that executes properly.
For this project, you are required to create two different classes that
implement the same interface via a common abstract parent. While the specific
details are listed later in this document, the following diagram illustrates the
general relationship between your classes and the interface. The package cs1302.gen
is provided for you in the cs1302-urgency-queue.jar file which is included in the download for the
project (details later). You do not have access to the source
code for classes in cs1302.gen. However, you do have access to the byte code and the API
documentation website. You will need to use both UrgencyQueue and Node in your code since
BaseLinkedUrgencyQueue depends on UrgencyQueue and Node.
The specific requirements for each class are presented below (See the Suggested Checklist for the suggested order of implementation).
-
BaseLinkedUrgencyQueue: Create the abstractcs1302.p3.BaseLinkedUrgencyQueueclass such that it properly implements a subset of the abstract methods in theUrgencyQueueinterface. SinceBaseLinkedUrgencyQueueis abstract, it is not mandatory to implement all methods ofUrgencyQueuewithin this class. The exact list of methods this class must implement is in the method section forBaseLinkedUrgencyQueuein the provided UML diagram above. Since bothLinkedUrgencyQueueandCustomLinkedUrgencyQueueuse a linked list data structure, it is appropriate to haveheadas an instance variable of theBaseLinkedUrgencyQueueclass.- Note: The methods that are listed in the UML diagram in
BaseLinkedUrgencyQueuemust be implemented in that class. You are not allowed to move any of them into either of the child classes. You may, however, find that you can move one or more methods fromLinkedUrgencyQueueandCustomLinkedUrgencyQueueup intoBaseLinkedUrgencyQueue. Moving methods up is allowed. In fact, it is encouraged. Any method that you can move up only has to be written once! However, accomplishing this will require some thought. We hope that all of you spend some time trying to move additional methods up toBaseLinkedUrgencyQueue.
- Note: The methods that are listed in the UML diagram in
-
LinkedUrgencyQueue: Create thecs1302.p3.LinkedUrgencyQueueclass such that it properly extendscs1302.p3.BaseLinkedUrgencyQueueand fully implements thecs1302.gen.UrgencyQueueinterface with additional requirements listed below.-
The
LinkedUrgencyQueueimplementation ofUrgencyQueueuses a linked list ofNodeobjects to maintain its queue ("line") of items and imposes aComparableUpper Bound so that it can compare items. Since each item is compatible with the generic type parameterType, andTypeis required to implementComparable<Type>, this class is able to directly determine the relative level of urgency between two items using the natural ordering defined by the item type'scompareTo(Type)method. -
The starter code for
LinkedUrgencyQueuecontains the class declaration along with the signature for the default constructor. You are not allowed to change the class declaration or the signature of the constructor.Here is the class declaration:
public class LinkedUrgencyQueue<Type extends Comparable<Type>> extends BaseLinkedUrgencyQueue<Type> {
Here is the signature for the constructor:
public LinkedUrgencyQueue()
-
There is a requirement related to this class's storage included in the Absolute Requirements section.
-
-
CustomLinkedUrgencyQueue: Create thecs1302.p3.CustomLinkedUrgencyQueueclass such that it properly extendscs1302.p3.BaseLinkedUrgencyQueueand fully implements thecs1302.gen.UrgencyQueueinterface with additional requirements listed below.-
The
CustomLinkedUrgencyQueueimplementation ofUrgencyQueueuses a linked list ofNodeobjects to maintain its queue ("line") of items and requires a Comparator Constructor Parameter so that it can compare items. Although the generic type parameterTypedoes not have any explicit upper-bound requirements, this class is still able to determine the relative level of urgency between two items using the ordering imposed by the comparator supplied to the constructor (i.e., it uses comparator'scompare(Type, Type)method). -
The starter code for
CustomLinkedUrgencyQueuecontains the class declaration along with the signature for the one-parameter constructor. You are not allowed to change the class declaration or the signature of the constructor.Here is the class declaration:
public class CustomLinkedUrgencyQueue<Type> extends BaseLinkedUrgencyQueue<Type> {
Here is the signature for the constructor:
public CustomLinkedUrgencyQueue(Comparator<Type> cmp) {
-
There is a requirement related to this class's storage included in the Absolute Requirements section.
-
-
(100 points) Test Cases: The bulk of this project will be graded based on 50 or more test cases, each likely worth the same amount of points. This is the same as someone using the classes you wrote based purely on the interface definitions. If you implement the interface correctly, then you should pass the associated test cases.
A non-functional requirement is subtracted from your point total if not satisfied. In order to emphasize the importance of these requirements, non-compliance results in the full point amount being subtracted from your point total. That is, they are all or nothing.
-
(0 points) [RECOMMENDED] No Static Variables: Use of static variables is not appropriate for this assignment. However, static constants are perfectly fine.
- (20 points) Code Style Guidelines: You should be consistent with the style
aspect of your code in order to promote readability. Every
.javafile that you include as part of your submission for this project must be in valid style as defined in the CS1302 Code Style Guide. All of the individual code style guidelines listed in that document are part of this single non-functional requirement. Ifcheck1302on Odin reports any style violations for your submission, then 5 points will be subtracted from your earned point total for each violation, up to a maximum deduction of 20 points.
NOTE: The CS1302 Code Style Guide includes instructions on how to use the
check1302program to check your code for compliance on Odin.- In-line Documentation (10 points): Code blocks should be adequately documented using in-line comments. With in-line comments, you should explain tricky, large, complicated, or confusing blocks of code. This is especially necessary whenever a block of code is not immediately understood by a reader (e.g., yourself or the grader). You might also include information that someone reading your code would need to know but not someone using it (that is more appropriate for a Javadoc comment). A good heuristic for this: if you can imagine that, after six months, you might not be able to tell in under a few seconds what a code block is doing, then then you probably need to write some in-line comments.
- (20 points) Code Style Guidelines: You should be consistent with the style
aspect of your code in order to promote readability. Every
An absolute requirement is similar to a non-functional requirement, except that violating it will result in an immediate zero for the assignment. In many cases, a violation will prevent the graders from evaluating your functional requirements. No attempts will be made to modify your submission to evaluate other requirements.
-
Project Directory Structure & Compilation: The location of the default package for the source code should be a direct subdirectory of
cs1302-urgency-queuecalledsrc. When the project is compiled, the-doption should be used withjavacto make the default package for compiled code a direct subdirectory ofcs1302-urgency-queuecalledbin. The following options are also required for this project:-Xlint:rawtypes-Xlint:unchecked-Werror
If you follow this structure, then you would type the following to compile
BaseLinkedUrgencyQueue.javato thebindirectory, assuming you are in the top-level project directorycs1302-urgency-queue:$ javac -Xlint:rawtypes -Xlint:unchecked -Werror -d bin -cp cs1302-urgency-queue.jar src/cs1302/p3/BaseLinkedUrgencyQueue.javaRemember, when you compile
.javafiles individually, there might be dependencies between the files. In such cases, the order in which you compile the code matters. Also, if more than one default package is needed (e.g.,cs1302-urgency-queue.jarand some other directory likebin), then a colon:can be used to separate each path in a list of multiple paths supplied to-cp(e.g.,-cp cs1302-urgency-queue.jar:bin). SinceLinkedUrgencyQueueandCustomLinkedUrgencyQueuedepend on files incs1302-urgency-queue.jarandBaseLinkedUrgencyQueue(inbin), we need both to be on the classpath as follows:$ javac -Xlint:rawtypes -Xlint:unchecked -Werror -cp bin:cs1302-urgency-queue.jar -d bin src/cs1302/p3/LinkedUrgencyQueue.java $ javac -Xlint:rawtypes -Xlint:unchecked -Werror -cp bin:cs1302-urgency-queue.jar -d bin src/cs1302/p3/CustomLinkedUrgencyQueue.java -
Development Environment: This project must must compile and run correctly on Odin using the specific version of Java enabled by the CSCI 1302 shell profile.
If you decide to introduce additional
.javafiles into your project, then they are expected to fulfill all non-functional and absolute requirements, even if the main parts of the project do not use them. You may assume graders will compile your source code in an order that satisfies compilation dependencies. You should remove any.javafiles that you do not need before submission. -
Storage Requirement: You must use a sequence of
cs1302.gen.Nodeobjects for this class's storage. If you use Java'sjava.util.LinkedListclass or something similar (e.g., a class that implementsjava.util.Collection), then that will result in an immediate violation of this non-functional requirement, regardless of any use of anyNodeobjects elsewhere in the class. This requirement also prohibits any use of third-party implementations of list or list-like interfaces. -
You can check this using the
jdepstool. Inspect the output of the command below after everything is compiled. You don't want to seeLinkedUrgencyQueuepointing toCustomLinkedUrgencyQueueor vise-versa.$ jdeps -v -cp cs1302-urgency-queue.jar bin -
No
java.util.ArraysDependency: You are also NOT allowed to use thejava.util.Arraysclass. For more information on why, please read this FAQ item. You can also check for the presence of this dependency usingjdepsas described in an earlier requirement — you don't want to seejava.util.Arraysanywhere in the output.NOTE: The
System.arraycopymethod is in theSystemclass and notjava.util.Arrays; however, its use is frowned upon for the same reasons that we provide here for thejava.util.Arraysclass.
This project will be graded using unit tests, none of which will be made available before the project deadline. You can test your implementations yourself via interface polymorphism.
On Odin, execute the following terminal command in order to download the project files into a sub-directory within your present working directory:
$ git clone --depth 1 https://github.com/cs1302uga/cs1302-urgency-queue.git
This should create a directory called cs1302-urgency-queue in
your present working directory that contains a clone of the
project's repository. Take a look around.
If any updates to the project files are announced by your instructor, you can merge those changes into your copy by changing into your project's directory on Odin and issuing the following terminal command:
$ git pull
If you have any problems with these download procedures, then please contact your instructor.
You are responsible for implementing test cases to test your LinkedUrgencyQueue and CustomLinkedUrgencyQueue classes. There are
a few examples of test cases are provided in the
UrgencyQueue API Documentation.
Additionally, we have provided Oracle classes for both LinkedUrgencyQueue and CustomLinkedUrgencyQueue that you can
instantiate and use in your driver program. The Oracle will allow you to run test cases that you write using a trusted
implementation of UrgencyQueue so you can compare the Oracle output to the output of your UrgencyQueue implementations.
- The Oracle implementation of
LinkedUrgencyQueueis provided in thecs1302.oracle.OracleLinkedUrgencyQueueclass. - The Oracle implementation of
CustomLinkedUrgencyQueueis provided in thecs1302.oracle.OracleCustomLinkedUrgencyQueueclass.
You will be submitting your project via Odin before the deadline indicated near the top of this document.
Before you attempt to submit your project, it is very important that you make sure it
compiles without errors and warnings using the specific javac commands mentioned earlier
in this project description.
Make sure your project files are on odin.cs.uga.edu. Change into the parent directory of your
project directory. If you've followed the instructions provided in this document,
then the name of your project directory should be cs1302-urgency-queue.
While in your project's parent directory, execute the following command:
$ check1302 cs1302-urgency-queue/src
If there are style guide violations, then fix them and retest your code! Once you have no style guide violations, you can submit using the following command:
$ submit cs1302-urgency-queue csci-1302
If you have any problems submitting your project then please send a private post to your instructor via the course Piazza as soon as possible. However, creating a post about something like this the day or night the project is due is probably not the best idea.
To help you with planning out this project, here are some suggested steps you can take that your instructors believe will help you complete the project more easily. Some of the items in this checklist may not make sense until you have read the entire project description, including the API Documentation. These steps are suggestions and, therefore, do not constitute an exhaustive list of steps that you may need to take to complete the project.
-
Preparation (Suggested Deadline: Monday, Oct 13th. 11 days before the deadline):
- Read through the entire project description, including the appendices, and write down questions as you go.
- Read through the entire API Documentation for the classes in the
cs1302.genpackage linked below: -
cs1302.gen.Node -
cs1302.gen.UrgencyQueue- Be sure to read everything up to the "Method Details" section. That section is important but will make more sense later - you will want to reference it when you are ready to start writing code.
- Carefully trace through any code examples that are given. These will help you understand how your
class will be used. In the examples, the object created of one of the oracle types. When you are
testing your code, you will replace the oracle type with
LinkedUrgencyQueueandCustomLinkedUrgencyQueue.
- Read both of them again! This time, you may be able to answer some of your own questions.
-
Before you write any code (Suggested Deadline: Tuesday, Oct 14th. 10 days before the deadline):
- For each method in the interface, make sure you understand how to call each method and what a user
expects to happen when calling that method on an object of an implementing class. For example, what
would occur if the driver program executed the line
queue.enqueue("end")on a preexisting object of a class that implementsUrgencyQueue? Use the code examples in the documentation to get you started. - For each method in the interface, try to write down what you
think the basic steps need to be in order to produce the desired outcome.
- Try to keep it high level. If the steps that you write down sound like they can be accomplished with another method, then replace those steps with a note to refer to that method. If that other method does not yet exist, then you might introduce that as a private or protected helper method. Using existing methods can greatly cut down the amount of code you need to write and minimize the number of bugs in your code.
- Based on the previous suggestion, draw out what the method dependencies
are for each method (i.e., what method depends on what). If you notice
any circular dependencies, then those should be eliminated.
- The methods that don't depend on other methods are good candidates to start within the next phase of your development. We'll call these the independent methods.
- For each method in the interface, make sure you understand how to call each method and what a user
expects to happen when calling that method on an object of an implementing class. For example, what
would occur if the driver program executed the line
-
Prepare to implement the methods (Suggested Deadline: Wednesday, Oct 15th. 9 days before the deadline):
-
Create the
.javafiles for each implementing class and the common parent (BaseLinkedUrgencyQueue) and make sure all classes are in the correct package and all entities have the proper visibility. For each file:- Write all of the method signatures (member-level declarations). Remember, in the child
classes (
LinkedUrgencyQueueandCustomLinkedUrgencyQueue), you don't need to include method signatures for inherited methods that aren't overridden in the child classes. - In the body of each method, throw an
UnsupportedOperationException. Do not attempt to actually implement the method yet. - Run
checkstyleto make sure that you're off to a good start, style-wise. Yes, this includes Javadoc comments; read this for a recommended way to handle the inherited documentation. - Make sure the files compile, even though they're not really implemented yet. We recommend making a compile script to simplify compilation in the future. This will make it easier to test/debug your code.
- Write all of the method signatures (member-level declarations). Remember, in the child
classes (
-
Create a class called
cs1302.test.QueueTesterand add any code snippets found in the API documentation for thecs1302.genpackage. Place each code snippet in its own method with an appropriate name. Then, create amainmethod inQueueTesterthat calls the methods you just created. If everything is set up properly, all of the tests should pass because the Oracle code provides working implementations of theUrgencyQueueinterface. Now, you will have your testing environment set up and you will be able to seamlessly plug in your implementations ofUrgencyQueueto test the functionality. -
If you haven't already done so, make a script to compile all of the classes and run your
UrgencyQueueclass. At this point, you will likely see anUnsupportedOperationException. That's okay. Those will go away as we start implementing the method bodies.
At this point, you should have the complete environment set up with templates for each class you will implement (
LinkedUrgencyQueueandCustomLinkedUrgencyQueue) along with a simple tester program. If you take the first three checkpoints seriously, then you will be able to:- write less code for each method and overall;
- identify and fix bugs faster;
- not have to go back and fix as many style errors and/or comments; and
- have a better understanding of how your class works.
-
-
Start by implementing a few methods in
BaseLinkedUrgencyQueue(Suggested Deadline: Thursday, Oct 16th. 8 days before the deadline):-
Begin with
size. Since this method is inherited by the children, we won't need to write it in the child classes! Now, go ahead and add the method calledtestSize()to yourQueueTesterclass and call it from themainmethod. The code for these methods should look something like the code below:public static void testSize() { UrgencyQueue<Integer> queue = new LinkedUrgencyQueue<Integer>(); // Testing size on an empty queue if (queue.size() == 0) { System.out.println("size: Test Passed"); } else { System.out.println("size: Test Failed"); System.exit(0); } // if } // testSize
If you've done everything properly so far, this should run and print a "Test Passed" message to the console. The code above contains a possible test case that we could run when grading your program.
At this point, you should have the basic foundation for your program done including skeleton code, a compile script, and a good understanding of what all of the methods do (and how they do them). As you move forward, we recommend completing the methods in the order described below.
Make sure to do one method at a time, fully test it, run
check1302, and do a propergit committo save your modifications before moving to the next method.
-
-
Implement the methods in the order they are listed below (Suggested Deadline: Saturday, Oct 18th. 6 days before the deadline): Check the method detail section for hints and more details about each method before implementing
-
BaseLinkedUrgencyQueue: constructor,size, andpeek -
LinkedUrgencyQueue: constructor andenqueue -
BaseLinkedUrgencyQueue:toString
Now, you can improve your
QueueTesterclass by creating objects of typeLinkedUrgencyQueue, adding items to it, and printing the queue to the console!When testing, you should rerun all previous tests and make sure they still work. This iterative process of testing code is sometimes called regression testing. You may need to go back and fix a bug in a method you have already written.
-
-
Complete
BaseLinkedUrgencyQueue(Suggested Deadline: Sunday, Oct 19th. 5 days before the deadline):- implement the remaining methods in the order they are presented in the UML diagram above.
- Test, run
checkstyle, and commit after completing each method (before moving on to the next).
-
Complete
LinkedUrgencyQueue(Suggested Deadline: Tuesday, Oct 21st. 3 days before the deadline):- implement the remaining methods in the order they are presented in the UML diagram above.
- Test, run
checkstyle, and commit after completing each method (before moving on to the next).
-
Implement
CustomLinkedUrgencyQueue(Suggested Deadline: Thursday, Oct 23rd. 1 day before the deadline):- Write the code for the constructor.
- implement the remaining methods in the order they are presented in the UML diagram above.
* When it comes time to write tests, if your test methods operate on an
UrgencyQueuevariable, then there is probably very little, if any, changes that you need to make in order to test the methods in this class. - Test, run
checkstyle, and commit after completing each method (before moving on to the next).
-
Final Run-through (Suggested Deadline: Friday, Oct 24th 0 days before the deadline):
- Thoroughly test all of your methods on objects of both
LinkedUrgencyQueueandCustomLinkedUrgencyQueue. - Remember to run
check1302often and commit changes as you fix bugs. - Your driver program does not need to be submitted. If you choose to submit it, you must make sure it compiles and passes
the
checkstyleaudit.
- Thoroughly test all of your methods on objects of both
Below are some frequently asked questions related to this project.
-
Is the
java.util.Arraysclass allowed?No, this violates a requirement; instead, you should write your own version of the method you want to use. Most of the methods that you think you might need from that class can be written in 6 lines of code or less (often much less), and writing your own version will serve as some much-needed practice.
We very much appreciate any feedback you might have for this section. Please don't hesitate to send us a private Piazza message with suggestions on how to make it better after you complete your project.
Have a question? Please post it on the course Piazza.
Copyright © Michael E. Cotterell and the University of Georgia. This work is licensed under a Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License to students and the public. The content and opinions expressed on this Web page do not necessarily reflect the views of nor are they endorsed by the University of Georgia or the University System of Georgia.
