/* Program to search data in array using Jump Search Jump Search: It is a way to search data in array where it jump sqrt(n-1) and if data is less than current then it started searching it linearly */ #include #include #include //Function to search data linearly int jump_search(int *arr,int n,int jump,int to_search) { int start=0,end=jump; //until n(size) is greater than end run the loop while(end