CSE 373, Summer 2019: Project 1 - Basic Data Structures Project

Overview

In this project, you will be implementing data structures that we've briefly talked about in class. We will use throughout the rest of the quarter as building blocks for bigger programs and more complex data structures.

  • Gain a deeper understanding of common data structures and their runtimes by implementing them.
  • Practice working with iterators, generics, and interfaces.
  • Practice writing and using your own tests with JUnit.

This assignment has two parts. Part 1 is due on Wednesday, July 10 at 11:59pm and part 2 is due on Thursday, July 18 at 11:59pm.

Expectations

Here are some baseline expectations you should meet in all projects:

  • Follow the course collaboration policies.

  • DO NOT import or use any classes from java.util.*. There are only two exceptions to this rule:

    1. You may import and use the following classes:

      • java.util.Iterator
      • java.util.NoSuchElementException
      • java.util.Objects
      • java.util.Arrays
    2. You may import and use anything from java.util.* within your testing code.

  • DO NOT make modifications to instructor-provided code (unless told otherwise). If you need to temporarily change our code for debugging, make sure to change it back afterwards.

Background information

Throughout this site, you will run into some blue boxes. You can expand or collapse these boxes by clicking on them.

For example:

Try clicking on me

Blue boxes contain background material that either:

  • Discusses (optional) material that is beyond the scope of this course
  • Discusses implementation details that you can safely ignore
  • Explains background information you may already know or was covered in previous courses that you may be rusty on.

You should be able to complete each project without having to read anything in the blue boxes. They exist mainly to satisfy your curiosity.

Table of Contents

You'll be writing code in part 1.