diff --git a/client/src/pages/guide/english/algorithms/graph-algorithms/index.md b/client/src/pages/guide/english/algorithms/graph-algorithms/index.md index f63d657a87..96cef8113e 100644 --- a/client/src/pages/guide/english/algorithms/graph-algorithms/index.md +++ b/client/src/pages/guide/english/algorithms/graph-algorithms/index.md @@ -19,3 +19,7 @@ Some of the most common graph algorithms are: Breadth First Search (BFS) Depth First Search (DFS) + +Dijkstra + +Floyd-Warshall Algorithm diff --git a/client/src/pages/guide/english/bash/bash-mkdir/index.md b/client/src/pages/guide/english/bash/bash-mkdir/index.md index 29e0932fd0..ee961411e1 100644 --- a/client/src/pages/guide/english/bash/bash-mkdir/index.md +++ b/client/src/pages/guide/english/bash/bash-mkdir/index.md @@ -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)