Tag: data-structures
All the articles with the tag "data-structures".
-
Kata: Graph Representation and Traversal
Build a graph with an adjacency list and implement BFS and DFS traversals.
-
Kata: Stack and Queue
Implement a stack and a queue, then build a queue using two stacks.
-
Kata: Build a Hash Map
Implement a hash map with separate chaining, dynamic resizing, and collision handling.
-
Kata: Binary Search Tree
Implement a binary search tree with insert, search, delete, and in-order traversal.
-
Kata: Implement a Linked List
Build a singly linked list from scratch with insert, delete, search, and reverse operations.