Skip to content

Commit b6f3cd4

Browse files
authored
update markdown title
1 parent 660fc7c commit b6f3cd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graphs/top_sort.md renamed to graphs/topological_sort.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Introduction
1+
## Introduction to Topological Sorting
22
Aside from DFS and BFS, the most common graph concept that interviews will test is topological sorting. Topological sorting produces a linear ordering of nodes in a directed graph such that the direction of edges is respected.
33

44
A **topological sort** is an ordering of nodes for a directed acyclic graph (DAG) such that for every directed edge _uv_ from vertex _u_ to vertex _v_, _u_ comes before _v_ in the ordering.

0 commit comments

Comments
 (0)