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
Hamiltonian Cycle

A Hamiltonian Cycle is a path in a graph that visits every node exactly once and returns to the starting node. It is closely related to Travelling Salesman Problem, where the goal is to find the shortest possible Hamiltonian cycle. Hamiltonian cycles are useful in routing, scheduling, and circuit design.

Draw Graph