Ecosyste.ms: Awesome
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: 19 days ago
JSON representation
DSA codes
- Host: GitHub
- URL: https://github.com/karanxidhu/ds-codes
- Owner: Karanxidhu
- Created: 2023-09-14T06:48:28.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-14T15:54:55.000Z (over 1 year ago)
- Last Synced: 2023-09-14T22:15:09.243Z (over 1 year ago)
- Topics: cpp, data-structures, linked-list, queue, stack
- Language: C++
- Homepage:
- Size: 23.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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