Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update linear_search.c #1452

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 13 additions & 29 deletions searching/linear_search.c
Original file line number Diff line number Diff line change
@@ -1,36 +1,20 @@
#include <stdio.h>
#include <stdlib.h>

int linearsearch(int *arr, int size, int val)
{
int i;
for (i = 0; i < size; i++)
{
if (arr[i] == val)
return 1;
}
return 0;
int search(int array[], int n, int x) {

// Going through array sequencially
for (int i = 0; i < n; i++)
if (array[i] == x)
return i;
return -1;
}

int main()
{
int n, i, v;
printf("Enter the size of the array:\n");
scanf("%d", &n); // Taking input for the size of Array
int main() {
int array[] = {2, 4, 0, 1, 9};
int x = 1;
int n = sizeof(array) / sizeof(array[0]);

int *a = (int *)malloc(n * sizeof(int));
printf("Enter the contents for an array of size %d:\n", n);
for (i = 0; i < n; i++)
scanf("%d", &a[i]); // accepts the values of array elements until the
// loop terminates//
int result = search(array, n, x);

printf("Enter the value to be searched:\n");
scanf("%d", &v); // Taking input the value to be searched
if (linearsearch(a, n, v))
printf("Value %d is in the array.\n", v);
else
printf("Value %d is not in the array.\n", v);

free(a);
return 0;
(result == -1) ? printf("Element not found") : printf("Element found at index: %d", result);
}
Loading