Table of Contents

Corning Community College

CSCS2320 Data Structures

PROJECT: Lists - Doubly-Linked Trees (DLT0)

OBJECTIVE

Onto Trees! Not only another common data structure, but the first non-linear data structure we've encountered this semester.

Don't forget to contribute to project documentation! That helps to ensure everyone is invested in the project.

OVERVIEW

Our tree, unlike our stack or queue, is not based on the list: we are taking the same doubly-linked nodes, and building a new, non-linear, infrastructure.

There are many descriptors used for the various trees that can be created. We will be pursuing an ordered binary search tree for our implementation.

UPGRADING

To assist with consistency across all implementations, project files for use with this project, along with the integration of the work you did on the last project, is made possible via a special recipe in the Makefile.

Simply go into the project base directory, and run:

lab46:~/src/SEMESTER/DESIG/prevPROJECT$ make upgrade-dlt0

EDIT

You will want to go here to edit and fill in the various sections of the document:

BACKGROUND

SPECIFICATIONS

PROGRAM

OUTPUT SPECIFICATIONS

UNIT TESTS

 

SUBMISSION

To be successful in this project, the following criteria (or their equivalent) must be met:

Submit Tool Usage

Let's say you have completed work on the project, and are ready to submit, you would do the following:

lab46:~/src/SEMESTER/DESIG/PROJECT$ make submit

You should get some sort of confirmation indicating successful submission if all went according to plan. If not, check for typos and or locational mismatches.

RUBRIC

I'll be evaluating the project based on the following criteria:

91:dlt0:final tally of results (65/65)
*:dlt0:obtained project by the Sunday prior to duedate [6/6]
*:dlt0:clean compile, no compiler messages [13/13]
*:dlt0:implementation passes unit tests [13/13]
*:dlt0:adequate modifications to code from template [13/13]
*:dlt0:program operations conform to project specifications [13/13]
*:dlt0:code tracked in lab46 semester repo [7/7]

Pertaining to the collaborative authoring of project documentation

Additionally