logoSEE ALGORITHMS
    Bubble Sort
    Insertion Sort
    Selection Sort
    Radix Sort
    Heap Sort
    Merge Sort
    Quick Sort
Graph
    Depth First Search
    Breadth First Search
    Prim's Algorithm
    Kruskal's Algorithm
    Dijkstra's Algorithm
    Topological Sorting
    Hamiltonian Cycle
    Binary Search Tree
    Binary Heap
    Circular Queue
    Convex Hull
    Huffman Coding
Depth First Search

Depth First Search (DFS) explores a graph by starting at a node and going as deep as possible along each path before backtracking. It uses a stack to keep track of the path. DFS is useful for tasks like finding connected components and solving puzzles where exploring all paths is necessary.

Draw Graph