algorithms icon indicating copy to clipboard operation
algorithms copied to clipboard

Add topological_sorting using khan's algorithm

Open thejeswar2419 opened this issue 3 weeks ago • 0 comments

The repository currently includes DFS-based graph traversals but lacks a BFS-based implementation of Topological Sorting using Kahn’s Algorithm.

Kahn’s Algorithm provides a clear and efficient way to perform topological ordering while also offering built-in cycle detection and avoiding recursion-depth issues.

thejeswar2419 avatar Nov 11 '25 17:11 thejeswar2419