Home > Software > How to Implement Sequential Search in Java

How to Implement Sequential Search in Java

Anastasios Antoniadis

Share on X (Twitter) Share on Facebook Share on Pinterest Share on LinkedInImplementing a sequential search in Java is a basic yet essential algorithm, especially useful for searching through arrays or lists where the data is not sorted, and efficiency is not the primary concern. Sequential search, also known as linear search, involves checking each …

Java

Implementing a sequential search in Java is a basic yet essential algorithm, especially useful for searching through arrays or lists where the data is not sorted, and efficiency is not the primary concern. Sequential search, also known as linear search, involves checking each element in the data structure sequentially until the target value is found or the end is reached.

Below is a simple example of how to implement a sequential search in Java. This example defines a method sequentialSearch that searches for a target value within an integer array and returns the index of the target if found, or -1 if the target is not present in the array.

public class SequentialSearchExample {

    public static void main(String[] args) {
        int[] data = {10, 20, 80, 30, 60, 50, 110, 100, 130, 170};
        int target = 110;
        
        int resultIndex = sequentialSearch(data, target);
        
        if (resultIndex == -1) {
            System.out.println("Element not present in the array");
        } else {
            System.out.println("Element found at index: " + resultIndex);
        }
    }

    /**
     * Performs a sequential search on the given array for the specified target value.
     * 
     * @param arr The array to search through.
     * @param target The value to search for.
     * @return The index of the target if found, otherwise -1.
     */
    public static int sequentialSearch(int[] arr, int target) {
        for (int i = 0; i < arr.length; i++) {
            if (arr[i] == target) {
                return i; // Target found
            }
        }
        return -1; // Target not found
    }
}

How It Works

  • The sequentialSearch method iterates through each element of the provided array arr.
  • For each element, it checks if it matches the target value.
  • If a match is found, it immediately returns the index i of the matching element.
  • If the loop completes without finding the target, the method returns -1, indicating that the target is not present in the array.

Performance Considerations

  • Efficiency: Sequential search is straightforward but not the most efficient search algorithm, especially for large datasets. Its time complexity is O(n), where n is the number of elements in the array.
  • Use Cases: Despite its simplicity, sequential search can be practical for small datasets, unsorted data, or when searches are infrequent and performance is not a critical factor.

Conclusion

Sequential search in Java demonstrates fundamental programming concepts and algorithmic thinking. While there are more efficient algorithms for searching, such as binary search on sorted data, understanding and implementing sequential search is an excellent starting point for grasping the basics of search algorithms.

Anastasios Antoniadis
Follow me
0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x