Skip to content

Commit

Permalink
updated docs
Browse files Browse the repository at this point in the history
  • Loading branch information
GauravWalia19 committed Dec 25, 2018
1 parent b67260d commit cf8881b
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 16 deletions.
13 changes: 8 additions & 5 deletions algorithms.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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

Expand Down
2 changes: 2 additions & 0 deletions datastructures.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ Indexer for Data Structures Lover
* docs
* array class in c++

### MISC

#### JAGGED

* blog
Expand Down
2 changes: 1 addition & 1 deletion docs/algo-docs/binary-search.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# INSERTION SORT
# BINARY SEARCH

## PSEUDOCODE

Expand Down
Empty file added docs/algo-docs/linear-search.md
Empty file.
20 changes: 10 additions & 10 deletions docs/complexity.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit cf8881b

Please sign in to comment.