DSA in C Library
PlannedA clean and reusable C library of core data structures and algorithms, plus simple test programs and notes. This is my “foundation” project for strong programming.
Scope
- Stack, Queue, Linked List (singly/doubly)
- Searching (linear, binary)
- Sorting (bubble, selection, insertion, merge, quick)
- Basic recursion + complexity notes (Big-O)
Deliverables
- Readable code with small functions
- Separate header/source files
- Examples and test cases
- Notebook posts explaining each topic
Stack
C
DSA
Testing