https://github.com/aamiranwar/sea
A curated list of programs in C for the study of Data structures and Algorithms.
https://github.com/aamiranwar/sea
algorithm c data-structures
Last synced: 8 months ago
JSON representation
A curated list of programs in C for the study of Data structures and Algorithms.
- Host: GitHub
- URL: https://github.com/aamiranwar/sea
- Owner: AamirAnwar
- License: mit
- Created: 2017-11-25T15:35:14.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-03-26T10:00:51.000Z (over 7 years ago)
- Last Synced: 2025-02-08T04:46:27.099Z (10 months ago)
- Topics: algorithm, c, data-structures
- Language: C
- Homepage:
- Size: 236 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

A curated list of programs in C for the study of Data structures and Algorithms.
## Sorting
- Quicksort
## Linked Lists
- Create a Linked List
- Reverse a Linked List
- Add one to number represented using a Linked List
- Sort a linked list
## Binary Search Tree
- Breadth First Search
- Given the preorder and inorder traversal, create a Binary Tree (in progress)