This repository has been archived on 2022-06-22. You can view files and clone it, but cannot push or open issues or pull requests.
usaco-guide/content/5_Gold/3_Gold_TopoSort.md
2020-06-15 16:19:07 -07:00

1.1 KiB

id title author prerequisites
toposort Topological Sort Benjamin Qi
Gold - Breadth First Search

A topological sort of a directed graph is a linear ordering of its vertices such that for every directed edge u\to v from vertex u to vertex v, u comes before v in the ordering.

Example Problems

Tutorial

Problems