Skip to content

Instantly share code, notes, and snippets.

@techisbeautiful
Created July 12, 2022 08:00
Show Gist options
  • Save techisbeautiful/53aae203bd03f04919568bc5c167ab5f to your computer and use it in GitHub Desktop.
Save techisbeautiful/53aae203bd03f04919568bc5c167ab5f to your computer and use it in GitHub Desktop.
int linearSearch(int dataCollection[], int element) {
for (int index = 0; index < dataCollection.length; index++) {
if (dataCollection[index] == element)
return index;
}
return -1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment