Created a simple stack data structure with push, pop, and display functionality.
View CodeDeveloped a queue data structure simulating a ticket counter with enqueue and dequeue operations.
View CodeBuilt a singly linked list with insertion, deletion, and traversal methods, including reversal functionality.
View CodeImplemented a BST with insert, delete, and search methods, as well as in-order traversal.
View CodeDeveloped a graph using an adjacency list, with depth-first search (DFS) and breadth-first search (BFS) traversal methods.
View CodeImplemented a B-Tree with insertion, deletion, and search functionality for balanced data structure representation.
View Code