This repository includes data structure and algorithms implemented using C Language
- Data structure
- Array (Dynamic array)
- Stack (Dynamic array)
- Queue (Circular dynamic array)
- Linked List
- Binary Search Tree
- Other programs
- Factorial
Change directory to the program you want to build and run make
>cd algorithms/factorial/
>make
>./factorial
Enter a number to find factorial:5
Factorial:120
Mayur Varma
Distributed under the MIT License. See LICENSE for more information.
- Fork it (https://github.com/mayurvarma14/data-structure-c/fork)
- Create your feature branch (
git checkout -b feature/fooBar) - Commit your changes (
git commit -am 'Add some fooBar') - Push to the branch (
git push origin feature/fooBar) - Create a new Pull Request