Merge pull request #13 from MakeContributions/docs/update-readme-index
docs: add relative path for indexpull/15/head
commit
17a71ffaeb
|
@ -1,13 +1,13 @@
|
|||
# Searching algorithms
|
||||
|
||||
### c-or-cpp
|
||||
### C or C++
|
||||
|
||||
1. linear-search.cpp
|
||||
2. binary-search.cpp
|
||||
3. jump-search.cpp
|
||||
1. [Linear Search](c-or-cpp/linear-search.cpp)
|
||||
2. [Binary Search](c-or-cpp/binary-search.cpp)
|
||||
3. [Jump Search](c-or-cpp/jump-search.cpp)
|
||||
|
||||
### python
|
||||
### Python
|
||||
|
||||
1. linear-search.py
|
||||
2. binary-search.py
|
||||
1. [Linear Search](python/linear-search.py)
|
||||
2. [Binary Search](python/binary-search.py)
|
||||
|
||||
|
|
|
@ -1,11 +1,13 @@
|
|||
# Sorting algorithms
|
||||
|
||||
### c-or-cpp
|
||||
### C or C++
|
||||
|
||||
1. bubble-sort.cpp
|
||||
1. [Bubble Sort](c-or-cpp/bubble-sort.cpp)
|
||||
2. [Insertion Sort](c-or-cpp/insertion-sort.cpp)
|
||||
3. [Selection Sort](c-or-cpp/selection-sort.cpp)
|
||||
|
||||
### python
|
||||
### Python
|
||||
|
||||
1. bubble-sort.py
|
||||
1. [Bubble Sort](python/bubble-sort.py)
|
||||
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# String operations
|
||||
|
||||
### c-or-cpp
|
||||
### C or C++
|
||||
|
||||
1. palindrome check (palindrome.c)
|
||||
1. [Palindrome Check](c-or-cpp/palindrome.c)
|
||||
|
|
Loading…
Reference in New Issue