Algorithms and Data Structures from Scratch In Python Algorithms 1. Searching Algorithms Binary Search - both Recursive and Iterative Approach 2. Sorting Algorithms Find the detailed description on Index page. Code Random Numbers for Input Data Structures 1. Linked List Find the detailed description on operations performed here. Linear Linked List Circular Linked List Doubly Linked List 2. Stack Stack using inbuilt Python List Stack using Linked List 3. Queue Queue using inbuilt Python List Queue using Linked List 4. Binary Tree (using Linked List) Find the detailed description on operations performed here. Binary Tree Binary Search Tree 5. Heap Max-Min Heap 6. Hashing Find the detailed description on operations performed here. Hashing using Chaining Hashing using Linear, Quadractic Probing and Double Hashing 7. Graph Graph using Adjacency Matrix