Skip to content

Instantly share code, notes, and snippets.

@bayraktugrul
Last active May 25, 2019 20:18
Show Gist options
  • Save bayraktugrul/4f8cd11f0be69e60a7f916a3c4a2f5e3 to your computer and use it in GitHub Desktop.
Save bayraktugrul/4f8cd11f0be69e60a7f916a3c4a2f5e3 to your computer and use it in GitHub Desktop.
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