added jump search in c++
commit
2963b9f5f8
|
@ -0,0 +1,8 @@
|
||||||
|
# OS generated files
|
||||||
|
.DS_Store
|
||||||
|
.DS_Store?
|
||||||
|
._*
|
||||||
|
.Spotlight-V100
|
||||||
|
.Trashes
|
||||||
|
ehthumbs.db
|
||||||
|
Thumbs.db
|
|
@ -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
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
# Sorting algorithms
|
||||||
|
|
||||||
|
### c-or-cpp
|
||||||
|
|
||||||
|
1. bubble-sort.cpp
|
||||||
|
|
||||||
|
### python
|
||||||
|
|
||||||
|
1. bubble-sort.py
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
# String operations
|
||||||
|
|
||||||
|
### c-or-cpp
|
||||||
|
|
||||||
|
1. palindrome check (palindrome.c)
|
Loading…
Reference in New Issue