Fix code URL & minor issues (#24859)

Fix code URL, type & minor issues.
This commit is contained in:
Dhirendra
2018-12-14 10:03:29 +05:30
committed by Manish Giri
parent 22f64fbce6
commit 38eab96ecb

View File

@ -3,6 +3,7 @@ title: Jump Search
--- ---
## Jump Search ## Jump Search
A jump search locates an item in a sorted array by jumping k items in the array and then verifies if the item wanted is between the previous jump and current jump. A jump search locates an item in a sorted array by jumping k items in the array and then verifies if the item wanted is between the previous jump and current jump.
# Worst Case Complexity # Worst Case Complexity
@ -19,7 +20,7 @@ O(√N)
# Code # Code
To view examples of code implementation for this method, access this link below: To view examples of code implementation for this method, access this link below:
[Jump Search - OpenGenus/cosmos](https://github.com/OpenGenus/cosmos/tree/master/code/search/jump_search) [Jump Search - OpenGenus/cosmos](https://github.com/OpenGenus/cosmos/tree/master/code/search/src/jump_search)
# Credits # Credits