Merge pull request #13 from MakeContributions/docs/update-readme-index

docs: add relative path for index
pull/15/head
Ming Tsai 2021-01-19 09:00:09 -04:00 committed by GitHub
commit 17a71ffaeb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 15 additions and 13 deletions

View File

@ -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)

View File

@ -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)

View File

@ -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)