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

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

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

cpp data-structures linked-list queue stack

Last synced: 12 months 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