Academic project to apply data structure concepts.
- Exercise 1, Simply linked Linear List with dummy head.
- Exercise 2, Doubly linked Linear List with dummy head.
- Exercise 3, Stack in dynamic memory allocation.
- Exercise 4, Queue in dynamic memory allocation to Medical Clinic management.
Clone
$ git clone git@github.com:scalone/data_structure.git
$ cd data_structure
Clean
$ make clean
Compile
$ make
Compile
$ make runner
Run
$ ./runnner
$ ./program <exercise>
ex1, Simply linked Linear List with dummy head
ex2, Doubly linked Linear List with dummy head
ex3, Stack in dynamic memory allocation
ex4, Queue in dynamic memory allocation to Medical Clinic management
-h, --help, Help
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request