Skip to content

Latest commit

 

History

History
54 lines (33 loc) · 1.01 KB

File metadata and controls

54 lines (33 loc) · 1.01 KB

Project Data Structure Algorithms

Academic project to apply data structure concepts.

Algorithms

  • 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.

Build

Clone

$ git clone git@github.com:scalone/data_structure.git
$ cd data_structure

Clean

$ make clean

Compile

$ make

Test

Compile

$ make runner

Run

$ ./runnner

Usage

$ ./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

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request