added dijkstra and floyd warshall to graph algo list (#19357)
* added dijkstra and floyd warshall to graph algo list * explanation for mkdir -p
This commit is contained in:
committed by
Quincy Larson
parent
39a9eec9e7
commit
2d6a0f4a6b
@ -19,3 +19,7 @@ Some of the most common graph algorithms are:
|
||||
<a href='https://github.com/freecodecamp/guides/tree/master/src/pages/algorithms/graph-algorithms/breadth-first-search/index.md' target='_blank' rel='nofollow'>Breadth First Search (BFS)</a>
|
||||
|
||||
<a href='https://github.com/freecodecamp/guides/tree/master/src/pages/algorithms/graph-algorithms/depth-first-search/index.md' target='_blank' rel='nofollow'>Depth First Search (DFS)</a>
|
||||
|
||||
<a href='https://github.com/freecodecamp/guides/tree/master/src/pages/algorithms/graph-algorithms/dijkstra/index.md' target='_blank' rel='nofollow'>Dijkstra</a>
|
||||
|
||||
<a href='https://github.com/freecodecamp/guides/tree/master/src/pages/algorithms/graph-algorithms/floyd-warshall-algorithm/index.md' target='_blank' rel='nofollow'>Floyd-Warshall Algorithm</a>
|
||||
|
@ -7,5 +7,7 @@ title: Bash mkdir
|
||||
|
||||
**Make a Directory** ,for example `mkdir hello`.
|
||||
|
||||
**Creating missing directories in the path**, let's say we need to create a directory `dir` in the path a/b/c/dir, but directory `b` and `c` don't exist. In this case, `mkdir -p a/b/c/dir` will create the missing directories in the path.
|
||||
|
||||
### More Information:
|
||||
* [Wikipedia](https://en.wikipedia.org/wiki/Mkdir)
|
||||
|
Reference in New Issue
Block a user