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:
Shawon Ashraf
2018-10-16 10:30:18 +06:00
committed by Quincy Larson
parent 39a9eec9e7
commit 2d6a0f4a6b
2 changed files with 6 additions and 0 deletions

View File

@ -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>

View File

@ -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)