This project contains implementations of various data structures in C++, including:
- Array-Based List
- Single Linked List
- Doubly Linked List
- Circular Linked List
- Stack
- Queue
Each data structure has its own set of methods that can be used to interact with the structure. Additionally, there are several problems included that can be solved using these data structures.
The Array-Based List implementation includes the following methods:
insert(elementType element): voidinsertAt(elementType element, int index): voidretrieveAt(int index): elementTyperemoveAt(int index): voidreplaceAt(elementType newElement, int index)isItemAtEqual(elementType element, int index): boolisEmpty(): boolisFull(): boollistSize(): intmaxListSize(): intclear(): voidprint(): void
The Single Linked List implementation includes the following methods:
insertAtHead(elementType element): voidinsertAtTail(elementType element): voidinsertAt(elementType element, int index): voidremoveAtHead(): voidremoveAtTail(): voidremoveAt(int index): voidretrieveAt(int index): elementTypereplaceAt(elementType newElement, int index)isExist(elementType element): boolisItemAtEqual(elementType element, int index): boolswap(int firstItemIdx, int secondItemIdx): void(swap two nodes without swapping data)isEmpty(): boollinkedListSize(): intclear(): voidprint(): void
The Doubly Linked List implementation includes the following methods:
insertAtHead(elementType element): voidinsertAtTail(elementType element): voidinsertAt(elementType element, int index): voidinsertAfter(* prev_node, int data): voidremoveAtHead(): voidremoveAtTail(): voidremoveAt(int index): voidretrieveAt(int index): elementTypereplaceAt(elementType newElement, int index)isExist(elementType element): boolisItemAtEqual(elementType element, int index): boolswap(int firstItemIdx, int secondItemIdx): void(swap two nodes without swapping data)reverse(): void(reverse the data in the double linked list)isEmpty(): booldoubleLinkedListSize(): intclear(): voidforwardTraversal(): void(Print from head to tail)backwardTraversal(): void(Print from tail to head)
The Circular Linked List implementation includes the following methods:
insertAtHead(elementType element): voidinsertAtEnd(elementType element): voidinsertAt(elementType element, int index): voidremoveAtHead(): voidremoveAtEnd(): voidremoveAt(int index): voidretrieveAt(int index): elementTypereplaceAt(elementType newElement, int index)isExist(elementType element): boolisItemAtEqual(elementType element, int index): boolswap(int firstItemIdx, int secondItemIdx): void(swap two nodes without swapping data)isEmpty(): boolcircularLinkedListSize(): intclear(): voidprint(): void
The Stack implementation includes the following methods:
push(elementType element): voidpop(): voidtop(): elementTypeisEmpty(): boolisFull(): boolstackSize(): int
The Queue implementation includes the following methods:
enqueue(elementType element): voiddequeue(): voidfront(): elementTypeisEmpty(): boolisFull(): boolqueueSize(): int
This project includes several problems that can be solved using the implemented data structures. These problems are:
Given a linked list containing a sequence of integers separated by 0s, merge all nodes between any two consecutive 0s into a single node whose value is the total of all the merged nodes. There are no two consecutive nodes with value == 0. There should be no 0s in the new list.
Given k linked-lists, each linked-list is sorted in ascending order, merge all the linked-lists into one sorted linked-list.
Given a string representing an infix expression, convert it to postfix expression.
Given a string containing the characters '(' and ')', return the length of the longest valid (well-formed) parentheses substring.
Write a function that generates and prints all binary integers from 1 to N.
Implement a stack that supports push and pop operations using the enqueue and dequeue operations of the queue. You can use one or more queues.
Given a queue with random integer elements, sort it.