This is an old revision of the document!
Corning Community College
CSCS2320 Data Structures
~~TOC~~
This section will document any updates applied to the project since original release:
In this project, we wrap up our singly-linked list implementation by exploring the reverse display and sorting of nodes in a list, along with writing a few application programs to see our list in action.
For this project, we're going to be implementing the following functions:
List *sortlist (List *, int); // sort list (according to mode) void displayb(List *, int); // display list in reverse order
In src/list/, you will find 2 new C files:
Take a look at the code there. These are the files that contain functions which will be compiled and archived into the node library (liblist.a) we will be using in this and future projects.
Figure out what is going on, make sure you understand it.
In testing/list/unit/, you will find these new files:
These are complete runnable programs (when compiled, and linked against the list library, which is all handled for you by the Makefile system in place).
Of particular importance, I want you to take a close look at:
To be successful in this project, the following criteria must be met: