https://github.com/justehmadsaeed/data-structures
Data Structures classes of CStack, CQueue, CPriority & Linked List in C++
https://github.com/justehmadsaeed/data-structures
cqueue cstack data-structures datastructures linked-list pointer
Last synced: 2 days ago
JSON representation
Data Structures classes of CStack, CQueue, CPriority & Linked List in C++
- Host: GitHub
- URL: https://github.com/justehmadsaeed/data-structures
- Owner: justEhmadSaeed
- Created: 2019-10-19T16:01:39.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-04-05T22:56:49.000Z (about 4 years ago)
- Last Synced: 2025-02-26T18:33:57.315Z (over 1 year ago)
- Topics: cqueue, cstack, data-structures, datastructures, linked-list, pointer
- Language: C++
- Homepage:
- Size: 19.8 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Data-Structures
## CNode Class
- Stores data-value & a pointer to point to next node
- have functions setValue() & getValue() to deal with data-value
- have functions setNext() & getNext() to deal with next pointer
## CStack Class
- It has a top pointer to to point to the top node of stack
## CQueue
-
## CPriority
-
## Linked List
-
## Circular Linked List
-
## Doubly Linked List
-