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, resume our conceptual journey and explore another data structure: stacks.
A stack is considered one of the most important data structures, along with queues (next week's project) and trees. And it is largely because of how often we find them playing out in nature or our day-to-day lives.
The word “stack” is defined as:
Additionally, when viewing it as a verb (an action), we also find some positive computing application (bolded) in a less reputable cardplaying usage:
Or, to distill it out:
Combining with our previous definitions, we have:
So, how does all this list and node stuff play into our stack implementation?
Well, we're going to build the stack ON TOP OF lists (which are composed of nodes).
Therefore, a stack is a data structure that stores its data in a list (which consists of nodes), and we apply various rules/restrictions on our access of that list data.
The concept of restricting access is a very important one- which we did with our list as well (limiting our access to the list through the use of append(), insert(), and obtain() versus manipulating the next/prev pointers manually all the time). By limiting how we access the data, we give ourselves certain algorithmic advantages:
It is common to think of a stack as a vertical object, much like a pile of papers that need to be processed (or a pile of anything we need to work with).
Although we've commonly viewed lists horizontally (from left to right), there is absolutely nothing requiring this positional orientation.
Similarly, stacks possess no mandatory orientation, but we do usually visualize them as vertical entities, largely because that's how the piles of paper that accumulate on our desks tend to grow.
The stack data structure presents certain advantages that encourages its use in solving problems (why do we stack a bunch of papers all in the same place to create piles? Why is that more advantageous than giving each one its own unique desk space?), and we accomplish that by its compositional definition:
These qualities cause the stack to be described as a LIFO (or FILO) structure:
And that describes what is conceptually going on– if we can ONLY access our data through one location (the top), the data most immediately available to us is that which we most recently placed there (hence the last one we pushed in would be the first one we get back when popping it).
This concept is very important, and being aware of it can be of significant strategic importance when going about solving problems (and seeing its pattern proliferate in nature).
With that said, the existence of top, along with the core push() and pop() functions defines the minimal necessary requiments to interface with a stack. Sometimes we'll see additional actions sneak in. While these may be commonly associated with stacks, they should not be confused as core requiments of a stack:
There
For this project, we're going to be re-implementing MOST of the previous node and list functions. There have been a few changes, namely:
#ifndef _NODE_H #define _NODE_H #include <stdlib.h> struct node { char data; struct node *prev; struct node *next; }; typedef struct node Node; Node *mknode(char ); // allocate new node containing value Node *rmnode(Node *); // deallocate node Node *cpnode(Node *); // duplicate node #endif
There is an addition of a “prev” node pointer, to allow connections to our previous neighbors.
The node value element has been renamed to “data”, just to make sure you understand what is going on code-wise.
#ifndef _LIST_H #define _LIST_H #include "node.h" // list relies on node to work struct list { Node *start; // pointer to start of list Node *end; // pointer to end of list }; typedef struct list List; // because we deserve nice things List *mklist(void ); // create/allocate new list struct List *cplist(List *); // copy (duplicate) list List *rmlist(List *); // remove all nodes from list List *insert (List *, Node *, Node *); // add node before given node List *append (List *, Node *, Node *); // add node after given node List *obtain (List *, Node ** ); // obtain/disconnect node from list void display(List *, int); // display list according to mode Node *findnode(List *, int); // locate node containing value List *sortlist(List *, int); // sort list (according to mode) List *swapnode(List *, Node *, Node *); // swap positions of given nodes in list #endif
The following changes have taken place:
In src/node/, you will find skeletons of what was previously there, ready for you to re-implement.
In src/list/, you will find the same- skeletons of the above prototyped functions, hollowed out in anticipation of being made operational.
Figure out what is going on, the connections, and make sure you understand it.
As ALL source files are now skeletons, no sample code has been given. This is intended to be a fresh implementation. While you may reference old code, do not rely on it- try your hand at implementing the functionality from scratch (the more you do this from scratch, the more it will help you).
In testing/list/unit/, you will find these new files:
Additional unit tests will be provided via dll0 project updates.
There are also corresponding verify-FUNCTION.sh scripts that will output a “MATCH”/“MISMATCH” to confirm overall conformance with the pertinent list functionality.
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: