Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/karanxidhu/ds-codes

DSA codes
https://github.com/karanxidhu/ds-codes

cpp data-structures linked-list queue stack

Last synced: 19 days ago
JSON representation

DSA codes

Awesome Lists containing this project

README

        

# DS-Codes
## Stacks
Contains all the basic opertaions like push pop peek delete.

## Queue
### Linear Queue
Contains all the basic operations like enqueu dequeue deletion etc.

### Circular Queue
Contains all the basic operations like enqueu dequeue deletion etc.

## Linked List
Contains all the basic operations like:
* Addition at beggining
* Addition at end
* Deletion at beggining
* Deletion at ending
* Add before specific value
* Add after specific value
* Deletion at specific position
* Deletion at specific value