How to code Linear Search or Sequential Search Algorithm in C Programming - letsbug

    Searching algorithms are used to find the element in the list. In this blog we will see how to implement linear search in C programming.
  1.      Linear Search, also called as orderly search or sequential search, because every key element is searched from first element in an array i.e a[0] to last element in an array i.e a[n-1]
C Program for linear Search

#include<stdio.h>
#include<conio.h>
int linearSearch(int [], int, int);
int main()
{
    int a[10], key, c, n, position;
    //Taking input
    printf("Enter number of element for the array: \n");
    scanf("%d", &n);

    printf("Enter %d number for aaray: \n", n);
    for(int i = 0; i < n; i++)
        scanf("%d", &a[i]);
    // Take element for searching
    printf("Enter the element for searching: \n");
    scanf("%d", &key);

    position = linearSearch(a, n, key);
    if(position == -1)
        printf("%d is not present in the Array. \n", key);
    else
        printf("%d is present at location %d. \n", key, position+1);
   
    getch();
    return 0;
}
// main searching function
int linearSearch(int a[], int n, int key)
{
    for(int i = 0; i < n; i++)
    {
        if(a[i] == key)
            return i;
    }
    return -1;
}

Output:
Linear Search in C programming
Linear search in c programming




Comments

Categories

Big Data Analytics Binary Search Binary Search Tree Binary To Decimal binary tree Breadth First Search Bubble sort C Programming c++ Chemical Reaction and equation class 10 class 10th Class 9 Climate Complex Numbers computer network counting sort CSS Cyber Offenses Cyber Security Cyberstalking Data Science Data Structures Decimal To Binary Development diamond pattern Digital Marketing dust of snow Economics Economics Lesson 4 Email Validation English fire and ice Food Security in India Footprints Without feet Forest And Wildlife Resources game Geography Geography lesson 6 glassmorphism Glossary Graph HackerRank Solution hindi HTML image previewer India-Size And Location Insertion Sort Internet Network Status Interview Questions Introduction to cyber crime and cyber security IT javascript tricks json to CSV converter lesson 2 lesson 1 lesson 2 Lesson 3 Lesson 6 lesson 7 Life lines of National Economy life processes Linear Search Linked List lowest common ancestor Machine Learning MCQs median in array Merge sort min and max of two numbers Moment Money and Credit My Childhood Natural Vegetation and Wildlife NCERT Network connectivity devices Network Models Network Security No Men Are foreign Node.js operator overloading P5.js PHP Physical features of India Population Prime Numbers python Quick sort R language Rain on the roof Regular Expression Resources and development reversing array saakhi science Searching Algorithm Selection sort Social Media Marketing social science Software Engineering Software Testing Sorting Algorithm Stacks staircase pattern System Concepts Text Recognition The last Leaf time converter Time Passed From A Date Todo List App Tree Trending Technologies Understanding Economic Development username and password video player Visualization water resources Wired And Wireless LAN साखी
Show more

Popular Posts

Big Data MCQs(multiple choice questions) with answers - letsbug

Digital Marketing MCQ(Multiple Choice Questions) with Answers | part 1 | letsbug

Software Engineering MCQs questions with answers - letsbug