Skip to content

Commit

Permalink
JumpSearch (TheAlgorithms#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
ashwani-rathee committed Jun 12, 2021
1 parent ca7a9fd commit 04e82be
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions src/searches/jump_search.jl
@@ -0,0 +1,45 @@
"""
# Jump Search(sorted array)
Jump Search is a searching algorithm for sorted arrays. The basic idea is to check fewer elements (than linear search) by jumping ahead by fixed steps or skipping some elements in place of searching all elements.
For example, suppose we have an array arr[] of size n and block (to be jumped) size m. Then we search at the indexes arr[0], arr[m], arr[2m]…..arr[km] and so on. Once we find the interval (arr[km] < x < arr[(k+1)m]), we perform a linear search operation from the index km to find the element x.
Let’s consider the following array: (0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610). Length of the array is 16. Jump search will find the value of 55 with the following steps assuming that the block size to be jumped is 4.
- STEP 1: Jump from index 0 to index 4;
- STEP 2: Jump from index 4 to index 8;
- STEP 3: Jump from index 8 to index 12;
- STEP 4: Since the element at index 12 is greater than 55 we will jump back a step to come to index 8.
- STEP 5: Perform linear search from index 8 to get the element 55.
## What is the optimal block size to be skipped?
In the worst case, we have to do n/m jumps and if the last checked value is greater than the element to be searched for, we perform m-1 comparisons more for linear search. Therefore the total number of comparisons in the worst case will be ((n/m) + m-1). The value of the function ((n/m) + m-1) will be minimum when m = √n. Therefore, the best step size is m = √n.
"""

"""
jump_search()
Jump Search in 1-D array
Time Complexity : O(√ n)
Time complexity of Jump Search is between Linear Search ( ( O(n) ) and Binary Search ( O (Log n) )
"""
function jump_search(arr::AbstractArray{T,1}, x::T, jump::T = Int(ceil(sqrt(n)))) where {T <: Real}
n = size(arr)[1];
start = 1
final = jump
while( arr[final] <= x && final < n)
start = final
final = final + jump
if( final > n -1)
final = n
end
end
for i in start:final
if(arr[i] == x)
return i
end
end
return -1
end

arr = [1, 2, 3, 31, 4, 13];
x = 31;
jump = 2; # optimum is sqroot(n)
n = size(arr)[1];

jump_search(arr, x, jump)

0 comments on commit 04e82be

Please sign in to comment.