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

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

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