diff --git a/algorithm/lower_bound.md b/algorithm/lower_bound.md index 81fcff8b..3c4c732b 100644 --- a/algorithm/lower_bound.md +++ b/algorithm/lower_bound.md @@ -13,5 +13,5 @@ std::cout << "The lower bound element is " << *lowerBoundIt << '\n'; ``` -**[See Sample code](snippets/vector/lower_bound.cpp)** +**[See Sample code](snippets/algorithm/lower_bound.cpp)** **[Run Code](https://rextester.com/KFK22059)** \ No newline at end of file diff --git a/algorithm/max.md b/algorithm/max.md index 29a85cd9..e8017312 100644 --- a/algorithm/max.md +++ b/algorithm/max.md @@ -9,5 +9,5 @@ // prints 7 std::cout << smallest << " "; ``` -**[See Sample code](snippets/vector/max.cpp)** +**[See Sample code](snippets/algorithm/max.cpp)** **[Run Code](https://rextester.com/RCHUQA23545)** \ No newline at end of file diff --git a/algorithm/max_element.md b/algorithm/max_element.md index c19a192f..71f81dae 100644 --- a/algorithm/max_element.md +++ b/algorithm/max_element.md @@ -11,5 +11,5 @@ std::cout << "The greatest element is " << *greatestIt << '\n'; ``` -**[See Sample code](snippets/vector/max_element.cpp)** +**[See Sample code](snippets/algorithm/max_element.cpp)** **[Run Code](https://rextester.com/MYCU8700)** \ No newline at end of file diff --git a/algorithm/min.md b/algorithm/min.md index afbcb30e..2f65a957 100644 --- a/algorithm/min.md +++ b/algorithm/min.md @@ -9,5 +9,5 @@ // prints 3 std::cout << smallest << " "; ``` -**[See Sample code](snippets/vector/min.cpp)** +**[See Sample code](snippets/algorithm/min.cpp)** **[Run Code](https://rextester.com/RCHUQA23545)** \ No newline at end of file diff --git a/algorithm/min_element.md b/algorithm/min_element.md index e8db8bc9..936bbc2a 100644 --- a/algorithm/min_element.md +++ b/algorithm/min_element.md @@ -11,5 +11,5 @@ std::cout << "The smallest element is " << *smallestIt << '\n'; ``` -**[See Sample code](snippets/vector/min_element.cpp)** +**[See Sample code](snippets/algorithm/min_element.cpp)** **[Run Code](https://rextester.com/ZVBA46979)** \ No newline at end of file diff --git a/algorithm/minmax.md b/algorithm/minmax.md index 62a7d769..54031a3d 100644 --- a/algorithm/minmax.md +++ b/algorithm/minmax.md @@ -17,5 +17,5 @@ " Max is " << minMax2.second << std::endl; ``` -**[See Sample code](snippets/vector/minmax.cpp)** +**[See Sample code](snippets/algorithm/minmax.cpp)** **[Run Code](https://rextester.com/AYBQP34022)** \ No newline at end of file diff --git a/algorithm/minmax_element.md b/algorithm/minmax_element.md index e3fd974c..eeafe8b9 100644 --- a/algorithm/minmax_element.md +++ b/algorithm/minmax_element.md @@ -12,5 +12,5 @@ " Max is " << *minMaxPair.second << std::endl; ``` -**[See Sample code](snippets/vector/minmax_element.cpp)** +**[See Sample code](snippets/algorithm/minmax_element.cpp)** **[Run Code](https://rextester.com/NSPL12489)** \ No newline at end of file diff --git a/algorithm/upper_bound.md b/algorithm/upper_bound.md index b5ee169e..03d5e0aa 100644 --- a/algorithm/upper_bound.md +++ b/algorithm/upper_bound.md @@ -13,5 +13,5 @@ std::cout << "The lower bound element is " << *upperBoundIt << '\n'; ``` -**[See Sample code](snippets/vector/upper_bound.cpp)** +**[See Sample code](snippets/algorithm/upper_bound.cpp)** **[Run Code](https://rextester.com/DAN7877)** \ No newline at end of file