This is a java program to find the minimum element of the sequence using the technique of linear search. First we assign min equal to the first element of the sequence, then we go on exploring each element of the sequence and compare it with the min element, if less we update min.
Here is the source code of the Java Program to Find Minimum Element in an Array using Linear Search. The Java program is successfully compiled and run on a Windows system. The program output is also shown below.
//This is a java program to find the minimum element using the technique of Sequential Search
import java.util.Random;
import java.util.Scanner;
public class Minimum_Using_Sequential
{
static int N = 20;
static int []sequence = new int[N];
public static int minSequential()
{
int min = sequence[0];
for(int i=0; i<N; i++)
if(min > sequence[i])
min = sequence[i];
return min;
}
public static void main(String args[])
{
Random random = new Random();
for(int i=0; i<N; i++)
sequence[i] = Math.abs(random.nextInt(100));
System.out.println("The sequence is :");
for(int i=0; i<N; i++)
System.out.print(sequence[i] + " ");
Scanner sc = new Scanner(System.in);
System.out.println("\nThe minimum element in the sequence is : " + minSequential());
sc.close();
}
}
Output:
$ javac Minimum_Using_Sequential.java $ java Minimum_Using_Sequential The sequence is : 33 43 61 93 97 31 53 62 58 87 68 61 16 52 12 29 27 63 68 22 The minimum element in the sequence is : 12
Related posts:
Constructor Injection in Spring with Lombok
Java Program to Implement Selection Sort
Java Program to Implement Knight’s Tour Problem
Lớp HashMap trong Java
Guide to the Volatile Keyword in Java
Guide to Character Encoding
Java Program to Perform Arithmetic Operations on Numbers of Size
Java 8 Stream findFirst() vs. findAny()
Convert a Map to an Array, List or Set in Java
Hướng dẫn sử dụng Java Reflection
Spring Security Remember Me
Extra Login Fields with Spring Security
Comparing Objects in Java
Difference Between Wait and Sleep in Java
Finding the Differences Between Two Lists in Java
Java Program to Generate All Subsets of a Given Set in the Gray Code Order
Custom Error Pages with Spring MVC
Java Program to Implement the One Time Pad Algorithm
HttpClient 4 – Follow Redirects for POST
Logout in an OAuth Secured Application
Bootstrapping Hibernate 5 with Spring
Hướng dẫn sử dụng luồng vào ra nhị phân trong Java
HttpAsyncClient Tutorial
Spring Cloud Connectors and Heroku
A Guide to @RepeatedTest in Junit 5
Jackson – Decide What Fields Get Serialized/Deserialized
Java Byte Array to InputStream
Guide to CopyOnWriteArrayList
Java Program to do a Breadth First Search/Traversal on a graph non-recursively
Stack Memory and Heap Space in Java
Java Program to Find the Minimum Element of a Rotated Sorted Array using Binary Search approach
Implementing a Binary Tree in Java