added jump search in c++

pull/10/head
satcasm 2021-01-15 18:45:38 +05:30
commit 2963b9f5f8
13 changed files with 37 additions and 0 deletions

8
.gitignore vendored 100644
View File

@ -0,0 +1,8 @@
# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

View File

@ -0,0 +1,13 @@
# Searching algorithms
### c-or-cpp
1. linear-search.cpp
2. binary-search.cpp
3. jump-search.cpp
### python
1. linear-search.py
2. binary-search.py

11
sorting/README.md 100644
View File

@ -0,0 +1,11 @@
# Sorting algorithms
### c-or-cpp
1. bubble-sort.cpp
### python
1. bubble-sort.py

View File

@ -0,0 +1,5 @@
# String operations
### c-or-cpp
1. palindrome check (palindrome.c)