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

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++

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
-