Tutorial Playlist
The linear search algorithm is a simple and direct way to look for a specific element inside an array. Each element in the array is successively checked until a match is discovered or the array's end. Beginning with the initial element, the algorithm compares it to the element that is being sought after. The algorithm returns the element's index if a match is discovered. If not, it advances to the following element and makes another comparison. This process continues until a match is made or the array's end is reached. The algorithm shows that the element is absent if the end of the array is reached without a match.
Since linear search has an O(n) time complexity, where n is the array size, it is appropriate for small-sized arrays or unsorted data. Other algorithms like binary search or hash-based approaches are typically favored for bigger arrays or more effective searches.
A list or array is systematically checked using the linear search method until the requested entry is located or the entire list has been scanned. A brute-force search algorithm is another term for it. Following is a list of the steps required to complete a linear search:
Let's consider an example to illustrate how linear search works. Suppose we have an array of numbers: [5, 9, 3, 7, 2]. We want to search for element 7 using linear search.
This is how linear search works. It is a straightforward algorithm but may not be efficient for large lists as it requires traversing each element individually.
Here's an example of a C program that performs a linear search using a function:
#include <stdio.h>
int linear search(int arr[], int n, int target) {
  // Traverse the array
  for (int i = 0; i < n; i ) {
    // If the target element is found, return its index
    if (arr[i] == target) {
      return I;
    }
  }
  // If the target element is not found, return -1
  return -1;
}
int main() {
  int arr[] = {5, 9, 3, 7, 2};
  int size = sizeof(arr) / sizeof(arr[0]);
  int target = 7;
  // Perform linear search
  int result = linearSearch(arr, size, target);
  if (result == -1) {
    printf("Element not found\n");
  } else {
    printf("Element found at index %d\n", result);
  }
  return 0;
}
In this program, we define a function linearSearch that takes three arguments: the array to search (arr), the size of the array (n), and the target element to search for (target). The function returns the index of the target element if found or -1 if not found.
In the main function, we declare an array arr, determine its size, and specify the target element we want to search for (target = 7 in this example).
We then call the linearSearch function, passing in the array, size, and target element as arguments. The returned result is stored in the result variable.
Finally, we check the value of the result and print the appropriate message based on whether the element was found or not.
When you run this program, it will output the following:
An element found at index 3
This indicates that the target element 7 was found at index 3 in the array.
Here's an example of a C program that performs a linear search using a function with pointers:
#include <stdio.h>
int linear search(int *arr, int size, int target) {
  // Traverse the array
  for (int i = 0; i < size; i ) {
    // If the target element is found, return its index
    if (*arr == target) {
      return I;
    }
    arr; // Move the pointer to the next element
  }
  // If the target element is not found, return -1
  return -1;
}
int main() {
  int arr[] = {5, 9, 3, 7, 2};
  int size = sizeof(arr) / sizeof(arr[0]);
  int target = 7;
  // Perform linear search
  int result = linear search(arr, size, target);
  if (result == -1) {
    printf("Element not found\n");
  } else {
    printf("Element found at index %d\n", result);
  }
  return 0;
}
The complexity analysis of an algorithm helps us understand how its performance scales with the size of the input. Let's analyze the complexity of the linear search algorithm:
In the worst-case scenario, the element being searched for is not present in the array, and we need to traverse the entire array to determine this. In the best-case scenario, the element is found at the first position in the array. The average case lies somewhere in between.
The linear search algorithm has a linear time complexity since the number of comparisons scales linearly with the size of the input array.
The space complexity of the linear search is O(1) because it does not require any additional space that grows with the size of the input. It uses constant space to store the variables for the loop iteration and the target element.
The advantages of linear search include:
Linear search also has some drawbacks, which include:
linear search is a simple and versatile algorithm for searching elements in a data structure. It sequentially compares each element in the structure until the target element is found or the end of the structure is reached.
Therefore, when performance is crucial or dealing with larger or sorted data sets, alternative search algorithms with better time complexities, such as binary search or hash-based search, should be considered.
Ultimately, the choice of a search algorithm depends on the specific requirements, data characteristics, and trade-offs between simplicity and efficiency. Assessing the context and selecting the most suitable algorithm is essential.
1. How does a linear search algorithm work in C?
Linear search sequentially checks each element in a list/array until the target is found or the end is reached.
2. What is the time complexity of linear search in C?
The time complexity of linear search is O(n), where n is the number of elements in the list/array.
3. How can I implement a linear search program in C?
Implement a loop to iterate through each element, comparing it with the target until a match is found.
4. What is the advantage of using pointers in a linear search program in C?
Pointers can be used to traverse the list/array efficiently without copying elements, saving memory and improving performance.
PAVAN VADAPALLI
Popular
Talk to our experts. We’re available 24/7.
Indian Nationals
1800 210 2020
Foreign Nationals
+918045604032
upGrad does not grant credit; credits are granted, accepted or transferred at the sole discretion of the relevant educational institution offering the diploma or degree. We advise you to enquire further regarding the suitability of this program for your academic, professional requirements and job prospects before enrolling. upGrad does not make any representations regarding the recognition or equivalence of the credits or credentials awarded, unless otherwise expressly stated. Success depends on individual qualifications, experience, and efforts in seeking employment.
upGrad does not grant credit; credits are granted, accepted or transferred at the sole discretion of the relevant educational institution offering the diploma or degree. We advise you to enquire further regarding the suitability of this program for your academic, professional requirements and job prospects before enr...