mirror of https://github.com/coolaj86/fizzbuzz.git
AJ ONeal 630b6ffdf5 | ||
---|---|---|
.. | ||
include | ||
.gitignore | ||
CMakeLists.txt | ||
Makefile | ||
README.md | ||
stack-test.c | ||
stack.c |
README.md
Stack (vanilla C)
Implement stack.c
with the following methods (as defined in include/stack.h
)
- create
- push
- pop
- peek
- length
- destroy
The underlying implementation may be
- dynamically-sized array
- linked-list
- any other ordered data structure
The storage strategy may
- make copies of the original elements
- store pointers to the original elements
The implementation must pass the following test suite queue-test.c
tar xf stack.tar.gz ~/
cd ~/stack
mkdir build
cd build
cmake ../
./stack-test