Go over Linked Lists
Go over generics
Standard list is a container that implements a linked list data structure
Stack is a data structure that can be implemented using a linked list. We'll go over the fundamentals of Stack
We need to:
Create a directory called assembler in your cs23001 folder
Copy the contents of Project 3 into the assembler folder
Write test cases for stack
Create tests for your stack
for Project 3 Milestone 1.
The tests should test all of stack
's functionality.
You can run your tests against a static version of stack before attempting the dynamic version.
The following should be true when you are done, NAMES MUST MATCH EXACTLY:
In your cs23001 directory you have created a directory named assembler.
In the directory assembler you have the following files:
The files from Project 3
Your exhaustive test cases of stack
There are NO executables in the repository.
Your programs compile, run, and perform as specified.
Your programs follow the General Program Requirements.