https://github.com/marxmit7/data-structure-algorithms
Data Structure in c
https://github.com/marxmit7/data-structure-algorithms
c
Last synced: 5 months ago
JSON representation
Data Structure in c
- Host: GitHub
- URL: https://github.com/marxmit7/data-structure-algorithms
- Owner: marxmit7
- Created: 2017-02-26T12:12:54.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-10-04T13:22:54.000Z (over 6 years ago)
- Last Synced: 2024-08-16T13:02:42.184Z (almost 2 years ago)
- Topics: c
- Language: C
- Homepage: http://www.codesync.in
- Size: 64.5 KB
- Stars: 3
- Watchers: 0
- Forks: 5
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Data Structure in c
## Hashing
* [Linear Probing](https://github.com/amit2rockon/Data-Structure-in-C/blob/master/Hashing/linear%20probing.c)
* [Quadratic Probing](https://github.com/amit2rockon/Data-Structure-in-C/blob/master/Hashing/quadratic%20probing.c)
* [Double Hashing](https://github.com/amit2rockon/Data-Structure-in-C/blob/master/Hashing/double%20hashing.c)
* [Chaining](https://github.com/amit2rockon/Data-Structure-in-C/blob/master/Hashing/chaining.c)
## Linked list
* [Singly Linked list full operation](https://github.com/amit2rockon/Data-Structure-in-C/blob/master/linked%20list/linkedlist.c)
* [Doubly Linked list full operation](https://github.com/amit2rockon/Data-Structure-in-C/blob/master/linked%20list/doublylinkedlist.c)
* Circular linked list implementations.
## Queue
* [Array Implementation](https://github.com/amit2rockon/Data-Structure-in-C/blob/master/queue/queueUsingArray.c)
* [Linked List Implementatin](https://github.com/amit2rockon/Data-Structure-in-C/blob/master/queue/queueUsingLinkedList.c)
## Stack
* [Array Implementation](https://github.com/amit2rockon/Data-Structure-in-C/blob/master/stack/stack.c)
* [Linked List Implementatin](https://github.com/amit2rockon/Data-Structure-in-C/blob/master/stack/stackUsingLinkedList.c)
* [Infix to Postfix](https://github.com/amit2rockon/Data-Structure-in-C/blob/master/stack/infixtopostfix.c)
* [Postfix Evaluation](https://github.com/amit2rockon/Data-Structure-in-C/blob/master/stack/evaluatePostfix.c)
## Tree
* [Tree Traversal](https://github.com/amit2rockon/Data-Structure-in-C/blob/master/tree/TreeTraversal.c)
* [level order traversal](https://github.com/amit2rockon/Data-Structure-in-C/blob/master/tree/LevelOrderTraversal.cpp)
* [Binary Search Tree](https://github.com/amit2rockon/Data-Structure-in-C/blob/master/tree/bst.c)
* [Avl Tree](https://github.com/amit2rockon/Data-Structure-in-C/blob/master/tree/avl.c)
* [Red black](https://github.com/amit2rockon/Data-Structure-in-C/blob/master/tree/redblacktree.c)
## Graph
* Added adjacency list representation
* Added adjacency list representation