Table of Contents

Code Explanations

Greedy

Kruskal’s Minimum Spanning Tree

Constructs a minimum spanning tree by repeatedly adding the shortest edge that does not form a cycle.

Category: greedy

Prim’s Minimum Spanning Tree

Grows a minimum spanning tree by starting from a vertex and greedily adding the smallest edge that expands the tree.

Category: greedy

Dijkstra’s Shortest Path

Finds the shortest path in a graph with non-negative edge weights by repeatedly choosing the closest unvisited node.

Category: greedy

Interval Scheduling Maximization

Selects the maximum number of non-overlapping intervals by always choosing the interval that finishes earliest.

Category: greedy

Coin Change (Greedy Variant)

Finds the minimum number of coins for making change, assuming a denomination system where the greedy choice leads to an optimal solution.

Category: greedy

Fractional Knapsack

Selects fractions of items to maximize total value given a weight constraint by taking items with the highest value-to-weight ratio first.

Category: greedy

Huffman Coding

Builds an optimal prefix-free code for given frequencies by greedily merging the least frequent symbols first.

Category: greedy

Job Scheduling (Minimizing Lateness)

Schedules jobs to minimize the maximum lateness by ordering them based on their deadlines.

Category: greedy

Best-First Search (Greedy Best-First)

Selects the next path expansion based on an evaluation function (often a heuristic), always expanding the path that appears best at the moment.

Category: greedy

Activity Selection Problem

Chooses the maximum number of activities that do not overlap by always picking the next activity that finishes earliest.

Category: greedy

Graph

Kruskal’s Algorithm

Builds a minimum spanning tree by sorting edges by weight and adding them if they don’t form a cycle.

Category: graph

Depth-First Search (DFS)

Explores a graph deeply along each branch before backtracking, often implemented using recursion.

Category: graph

Topological Sort

Orders the vertices of a directed acyclic graph so that all directed edges go from earlier in the order to later.

Category: graph

Prim’s Algorithm

Constructs a minimum spanning tree by growing a tree from a starting vertex and adding edges of minimum weight.

Category: graph

Tarjan’s SCC Algorithm

Finds strongly connected components in a directed graph using a depth-first search and a stack-based approach.

Category: graph

Dijkstra’s Algorithm

Finds the shortest path between nodes in a graph with non-negative edge weights.

Category: graph

Johnson’s Algorithm

Computes shortest paths between all pairs of vertices using a combination of reweighting and Dijkstra’s algorithm.

Category: graph

Floyd-Warshall Algorithm

Finds shortest paths between all pairs of vertices in a weighted graph, including those with negative edges (but no negative cycles).

Category: graph

Kosaraju’s SCC Algorithm

Determines strongly connected components by performing multiple DFS passes and leveraging graph transposes.

Category: graph

Bellman-Ford Algorithm

Computes shortest paths from a single source to all other vertices, handles negative edge weights but not negative cycles.

Category: graph

Breadth-First Search (BFS)

Traverses a graph level by level, starting from a root node, exploring all neighbors at one depth before moving to the next.

Category: graph

Maximum Flow (Ford-Fulkerson)

Finds the maximum flow in a network by repeatedly sending flow along augmenting paths until no more can be sent.

Category: graph

Sorting

Heap Sort

Builds a max-heap from the list and repeatedly extracts the maximum element and rebuilds the heap.

Category: sorting

Tim Sort

A hybrid stable sorting algorithm derived from merge sort and insertion sort, used in Python’s sort function.

Category: sorting

Selection Sort

Selects the minimum element from the unsorted part and swaps it with the element at the beginning of the unsorted part.

Category: sorting

Insertion Sort

Inserts each element into its correct position in a growing sorted portion of the array.

Category: sorting

Bucket Sort

Divides the input into buckets and sorts each bucket individually, often with another sorting algorithm.

Category: sorting

Bubble Sort

Repeatedly steps through the list, compares adjacent elements, and swaps them if they are in the wrong order.

Category: sorting

Quick Sort

Chooses a pivot, partitions the array into two sides around the pivot, and recursively sorts them.

Category: sorting

Counting Sort

Counts the occurrences of each distinct element and places them in the output array in order.

Category: sorting

Shell Sort

Starts sorting far-apart elements and progressively reduces the gap between elements to be compared.

Category: sorting

Merge Sort

Divides the list into halves, sorts them recursively, and merges the sorted halves.

Category: sorting

Radix Sort

Sorts integers digit by digit, starting from the least significant digit to the most significant.

Category: sorting

External Sort

Designed to handle data that does not fit into memory and often uses chunking and merging strategies.

Category: sorting

Dynamic Programming

Knapsack Problem (0/1)

Maximizes the value of items put into a knapsack without exceeding its capacity by reusing solutions of smaller subproblems.

Category: dynamic-programming

Matrix Chain Multiplication

Finds the optimal parenthesization of matrix multiplication to minimize the number of scalar multiplications.

Category: dynamic-programming

Egg Dropping Problem

Determines the minimum number of egg drops needed to find the critical floor using previously computed attempts for fewer eggs or floors.

Category: dynamic-programming

Partition Problem

Determines if a given set can be partitioned into two subsets of equal sum by building up results from smaller subsets.

Category: dynamic-programming

Fibonacci Sequence

Computes Fibonacci numbers using overlapping subproblems and caching results to avoid repeated work.

Category: dynamic-programming

Coin Change

Counts the ways to make change or finds the minimum coins needed by building upon solutions for smaller amounts.

Category: dynamic-programming

Word Break Problem

Decides if a string can be segmented into dictionary words, using results of subproblems for shorter prefixes.

Category: dynamic-programming

Longest Common Subsequence (LCS)

Finds the longest subsequence present in both sequences by building solutions to smaller subproblems.

Category: dynamic-programming

House Robber Problem

Maximizes the amount of money robbed from a line of houses without triggering alarms by not robbing adjacent houses.

Category: dynamic-programming

Longest Increasing Subsequence (LIS)

Determines the longest strictly increasing subsequence in a sequence using previous computed states.

Category: dynamic-programming

Rod Cutting Problem

Maximizes revenue by cutting a rod into optimal lengths using known optimal solutions to smaller rod sizes.

Category: dynamic-programming

Edit Distance (Levenshtein Distance)

Calculates the minimum number of edits (insertions, deletions, substitutions) to transform one string into another.

Category: dynamic-programming

String

Aho-Corasick

Builds a finite-state machine from a set of patterns to simultaneously search all patterns in O(n + m) time.

Category: string

Roling Hash (e.g.

Polynomial Rolling Hash)

Category: string

Suffix Automaton

Builds a minimal deterministic automaton of all suffixes, facilitating fast substring search and analysis.

Category: string

Manacher’s Algorithm

Finds the longest palindromic substring in linear time by expanding around potential centers.

Category: string

Suffix Tree Construction (Ukkonen’s Algorithm)

Constructs a compressed trie of all suffixes of a string in O(n) time, enabling fast substring queries.

Category: string

Suffix Array Construction

Generates a sorted array of all suffixes of a string to enable fast substring searching and comparisons.

Category: string

LCP Array Construction

Builds an array of longest common prefixes between adjacent suffixes in a suffix array, aiding in string analysis.

Category: string

Horspool’s Algorithm

A simplified version of Boyer-Moore that uses a single shift table to skip through the text efficiently.

Category: string

Z-Algorithm

Constructs a Z-array representing the longest substring starting from each position that matches the prefix, enabling efficient pattern search.

Category: string

Knuth-Morris-Pratt (KMP)

Finds occurrences of a pattern within a string by preprocessing the pattern to skip characters efficiently.

Category: string

Rabin-Karp

Uses hashing to quickly compare substrings and detect a pattern in a text, allowing average O(n) search.

Category: string

Boyer-Moore

Searches substrings from right to left, using character skipping rules to often skip large portions of the text.

Category: string

Searching

Jump Search

Skips ahead by fixed intervals in a sorted list, then performs a linear search within the identified block.

Category: searching

Binary Search

Repeatedly divides a sorted array in half to quickly narrow down the position of the target value.

Category: searching

Linear Search

Sequentially checks each element of the list until the desired element is found or the list is exhausted.

Category: searching

Hash-Based Search

Uses a hash function to directly compute the index of the target, allowing for average O(1) search time.

Category: searching

Best-First Search

Uses an evaluation function to choose which node to explore next, often guided by heuristics.

Category: searching

Exponential Search

First finds a range where the element could be by repeatedly doubling the index, and then applies binary search within that range.

Category: searching

Fibonacci Search

Uses Fibonacci numbers to determine search ranges in a sorted array, similar to binary search but with different mid calculation.

Category: searching

Uniform-Cost Search

Expands the least-cost node first, ensuring the optimal path is found based on cumulative cost.

Category: searching

Breadth-First Search (BFS)

Starts at a root node (or source) and explores all neighbors at the present depth before moving on to the nodes at the next depth level.

Category: searching

A* Search

A graph/tree search algorithm that uses heuristics to find the shortest path to a goal efficiently.

Category: searching

Interpolation Search

Estimates the position of a target in a sorted array using the target’s value and array boundaries, often faster than binary search for uniformly distributed data.

Category: searching

Depth-First Search (DFS)

Explores as far along each branch or path in a graph or tree before backtracking.

Category: searching

BackTrack

Hamiltonian Path Problem

A backtracking approach to determine a path through a graph that visits each vertex exactly once.

Category: backtrack

Rat in a Maze

A maze-solving algorithm that tries different paths to reach the destination and backtracks when a dead end is encountered.

Category: backtrack

Cryptarithm Solver

Assign digits to letters in a puzzle and backtrack when inconsistencies arise.

Category: backtrack

Puzzle Solving

Systematically assign values to variables under constraints, backtracking whenever a conflict occurs.

Category: backtrack

Combinations Generator

Find all combinations of a given set of items by adding and removing items and backtracking to explore all possibilities.

Category: backtrack

Graph Coloring

Assign colors to vertices of a graph so that no two adjacent vertices share the same color.

Category: backtrack

N-Queens Problem

A classic problem where the algorithm tries to place N queens on an N×N chessboard so that no two queens threaten each other.

Category: backtrack

Permutations Generator

Generate all permutations of a given sequence by swapping and backtracking.

Category: backtrack

Knight’s Tour

Backtracking method to find a sequence of moves for a knight so it visits every square on a chessboard exactly once.

Category: backtrack

Sudoku Solver

A backtracking approach to fill a 9x9 grid so that each row, column, and 3x3 subgrid contains all digits from 1 to 9.

Category: backtrack

Word Search Puzzle Solver

Find a given word in a character grid by exploring possible directions and backtracking when the path does not form the desired word.

Category: backtrack

Subset Sum

Backtracking to find a subset of numbers that sum up to a given target value.

Category: backtrack

Divide and Conquer

Quick Sort

Selects a pivot, partitions the array around it, then recursively sorts the subarrays.

Category: divide-and-conquer

Convex Hull (Divide-and-Conquer)

Splits the set of points into subsets, finds their hulls, and merges the hulls to form a global convex hull.

Category: divide-and-conquer

Karatsuba Multiplication

Multiplies two large integers faster than the classical algorithm by recursively splitting and combining results.

Category: divide-and-conquer

Matrix Chain Multiplication (Divide-and-Conquer Variant)

Uses recursive division of the matrix chain to find the optimal multiplication order.

Category: divide-and-conquer

Binary Search

Halves the search interval each time to quickly find an element in a sorted array.

Category: divide-and-conquer

Cooley-Tukey FFT

Computes the Discrete Fourier Transform efficiently by recursively dividing the problem into subproblems.

Category: divide-and-conquer

Closest Pair of Points

Recursively splits the set of points and uses clever combining techniques to find the closest pair in less than O(n²) time.

Category: divide-and-conquer

Strassen’s Matrix Multiplication

Multiplies two matrices faster than the standard algorithm by recursively breaking them down into sub-matrices.

Category: divide-and-conquer

Merge Sort

Divides the array into halves, recursively sorts the halves, and merges the sorted halves.

Category: divide-and-conquer

Median of Medians

Selects a pivot guaranteed to split the array into good portions, ensuring linear time selection.

Category: divide-and-conquer