Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/suyashsingh/data-structures-c

Data Structures in C
https://github.com/suyashsingh/data-structures-c

Last synced: 2 months ago
JSON representation

Data Structures in C

Awesome Lists containing this project

README

        

# Data-Structures-C
1. Singly Linked List - with and without using a function to point to the nth node.
2. Doubly Linked List - with and without using a function to point to the nth node.
3. Queue Implementation using Singly Linked List
4. Queue Implementation using Array
5. Circular Queue Using Array
6. Circular Queue Using Linked List
7. Stack using Array
8. Stack using Linked List
9. Singly Circular Linked List

## Sorting
1. Insertion Sort
2. Bubble / Sinker Sort

## Searching
1. Linear Search
2. Binary Search