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

Create Linear_Search.cpp #243

Open
wants to merge 1 commit into
base: main
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
28 changes: 28 additions & 0 deletions Searching Algorithms/Linear_Search.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
#include<iostream>
using namespace std;
int linear_search(int arr[],int key,int size){
for(int i=0;i<size;i++){
if(arr[i]==key){
return (i+1);
}
}
return -1;
}
int main(){
int arr[20],key,n,pos;
cout<<"Enter the size of array"<<endl;
cin>>n;
for(int i=0;i<n;i++){
cout<<"Enter the element"<<" "<<i+1<<endl;
cin>>arr[i];
}
cout<<"Enter the element to search in the array"<<endl;
cin>>key;
pos= linear_search(arr,key,n);
if(pos==-1){
cout<<"Element not found"<<endl;
}
else{
cout<<"Element found at position"<<" "<<pos<<endl;
}
}