-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJumpSearch.c
More file actions
42 lines (40 loc) · 805 Bytes
/
Copy pathJumpSearch.c
File metadata and controls
42 lines (40 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#include<stdio.h>
#include <math.h>
int jumpSearch(int arr[],int key,int l,int n,int j)
{
if(l>=n)
return 0;
else
{
int x = l+j;
if(x>n)
x=n-1;
if(arr[i]==key)
return 1;
else if(arr[x]>key)
{
for(int i=l;i<=x;++i)
if(arr[i]==key)
return 1;
return 0;
}
}
jumpSearch(arr,key,l+j,n,j);
}
int main()
{
int n;
scanf("%d",&n);
int arr[n];
//sorted array required
for(int i=0 ; i<n ; ++i)
scanf("%d",&arr[i]);
int k;
scanf("%d",&k);
//searching start
if(jumpSearch(arr,k,0,n,sqrt(n)))
printf("Found");
else
printf("Not found");
return 0;
}