Last active
May 25, 2019 20:18
-
-
Save bayraktugrul/4f8cd11f0be69e60a7f916a3c4a2f5e3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class LinearSearch { | |
public static int search(int arr[], int x) { | |
int n = arr.length; | |
for(int i = 0; i < n; i++) { | |
if(arr[i] == x) | |
return i; | |
} | |
return -1; | |
} | |
public static void main(String args[]) { | |
int arr[] = { 1, 3, 5, 7, 9 }; | |
int x = 7; | |
int result = LinearSearch.search(arr, x); | |
if(result == -1) | |
System.out.print("Element is not present in array"); | |
else | |
System.out.print("Element is present at index " + result); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment