Upload files to "DS/C/Lab/Week1"
This commit is contained in:
parent
181f9113d2
commit
51cc29eb50
5 changed files with 242 additions and 0 deletions
43
DS/C/Lab/Week1/linear.c
Normal file
43
DS/C/Lab/Week1/linear.c
Normal file
|
@ -0,0 +1,43 @@
|
|||
#include <stdio.h>
|
||||
|
||||
int main()
|
||||
{
|
||||
int a,n,i;
|
||||
int flag=0;
|
||||
int arr[10];
|
||||
|
||||
printf("Enter the number of elements you want in the array: ");
|
||||
scanf("%d",&n);
|
||||
|
||||
printf("Enter the numbers you want in the array:\n");
|
||||
for(i=0;i<n;i++){
|
||||
scanf("%d",&arr[i]);
|
||||
}
|
||||
|
||||
printf("The numbers in the array are:\n");
|
||||
for(i=0;i<n;i++){
|
||||
printf("%d\n",arr[i]);
|
||||
}
|
||||
|
||||
printf("Enter the number you want to search: ");
|
||||
scanf("%d",&a);
|
||||
|
||||
//linear search
|
||||
|
||||
for(i=0;i<n;i++){
|
||||
if(arr[i]==a){
|
||||
flag=1;
|
||||
printf("\nThe desired element is at position %d.\n",i+1);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if(flag){
|
||||
printf("The number has been found.\n");
|
||||
}else{
|
||||
printf("The number does not exist in this array.\n");
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue