Linear Search Program in C++

Advertisements

Prev Tutorial Next Tutorial

Linear Search in C++

Linear search is also called as sequential search. Linear search is a method for finding a particular value in a list. In this searching technique you need to check every elements one by one until desired element found.

Example of Linear Search in C++

	
#include<iostream.h>
#include<conio.h>

void main()
{
int i,a[50],num,size;
clrscr();
cout<<"Enter Size of array: ";
cin>>size;
cout<<"Enter element in array: \n"<<size;
for(i=0;i<size;i++)
{
cin>>a[i];
}
cout<<"Enter element for search: ";
cin>>num;
for(i=0;i<size;i++)
{
if(a[i]==num) // if element is found
{
cout<<"\n"<<"is present at"<<position <<num <<i+1;
break;
}
}
if(i==size)
{
cout<<"\n "<<"is not found"<<num;
}
getch();
  }

Output

	
Enter Size of array: 5
Enter 5 element in array
10
6
4
12
20
Enter element for search: 4
4 is present at 3 position
binary search in c++
Prev Tutorial Next Tutorial

Google Advertisment

Buy This Ad Space @$20 per Month, Ad Size 600X200 Contact on: hitesh.xc@gmail.com or 9999595223

Magenet is best Adsense Alternative here we earn $2 for single link, Here we get links ads. Magenet

For Projects 9999595223

Google Advertisements


Buy Websites 9999595223

Buy College Projects with Documentation Contact on whatsapp 9999595223. Contact on: hitesh.xc@gmail.com or 9999595223 Try this Keyword C++ Programs

Advertisements