Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/suyashsingh/data-structures-c
- Owner: suyashsingh
- Created: 2018-04-15T19:53:21.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-29T07:25:12.000Z (over 6 years ago)
- Last Synced: 2023-10-29T17:24:45.019Z (about 1 year ago)
- Language: C
- Size: 20.5 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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