diff --git a/algorithms.md b/algorithms.md index aeb7c25..4051b0a 100644 --- a/algorithms.md +++ b/algorithms.md @@ -10,21 +10,23 @@ Hola guys, Hello world this is algorithms index find your algorithms here if not ##### :rocket: LINEAR SEARCH -* blog -* docs -* implementation +* [blog] +* [docs](docs/algo-docs/linear-search.md) +* implementation * [C](C/Searching/linearSearch.c) * C++ * [SIMPLE](C++/Searching/linear.cpp) * [COMPLEX](C++/Searching/linearSearch.cpp) +* [complexity](docs/complexity.md#rocket-searching) ##### :rocket: BINARY SEARCH -* blog -* docs +* [blog] +* [docs](docs/algo-docs/binary-search.md) * implementation * [C](C/Searching/binarysearch.c) * [C++](C++/Searching/binary_search.cpp) +* [complexity](docs/complexity.md#rocket-searching) #### :rocket: PATTERN SEARCHING @@ -53,6 +55,7 @@ Hola guys, Hello world this is algorithms index find your algorithms here if not * [C](C/Sorting/BUBBLE-SORT/descendunbubble.c) * C++ * JAVA +* [complexity](docs/complexity.md#rocket-sorting) ##### :rocket: SELECTION SORT diff --git a/datastructures.md b/datastructures.md index 7efcc3d..f43b411 100644 --- a/datastructures.md +++ b/datastructures.md @@ -63,6 +63,8 @@ Indexer for Data Structures Lover * docs * array class in c++ +### MISC + #### JAGGED * blog diff --git a/docs/algo-docs/binary-search.md b/docs/algo-docs/binary-search.md index 23e4104..f432155 100644 --- a/docs/algo-docs/binary-search.md +++ b/docs/algo-docs/binary-search.md @@ -1,4 +1,4 @@ -# INSERTION SORT +# BINARY SEARCH ## PSEUDOCODE diff --git a/docs/algo-docs/linear-search.md b/docs/algo-docs/linear-search.md new file mode 100644 index 0000000..e69de29 diff --git a/docs/complexity.md b/docs/complexity.md index a39c015..0fe8d2c 100644 --- a/docs/complexity.md +++ b/docs/complexity.md @@ -7,18 +7,18 @@ This page contains the complexities of different algorithms in this repository. * ALGORITHMS * ITERATIVE * SEARCHING - * [LINEAR SEARCH](#searching) - * [BINARY SEARCH](#searching) + * [LINEAR SEARCH](#rocket-searching) + * [BINARY SEARCH](#rocket-searching) * PATTERN SEARCHING * SORTING - * [BUBBLE SORT](#sorting) - * [SELECTION SORT](#SORTING) - * [INSERTION SORT](#sorting) - * [SHELL SORT](#sorting) - * [MERGE SORT](#sorting) - * [QUICK SORT](#sorting) - * [COUNTING SORT](#sorting) - * [RADIX SORT](#sorting) + * [BUBBLE SORT](#rocket-sorting) + * [SELECTION SORT](#rocket-sorting) + * [INSERTION SORT](#rocket-sorting) + * [SHELL SORT](#rocket-sorting) + * [MERGE SORT](#rocket-sorting) + * [QUICK SORT](#rocket-sorting) + * [COUNTING SORT](#rocket-sorting) + * [RADIX SORT](#rocket-sorting) * STRINGS * BITWISE * MATHEMATICAL