Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java Exercises: Find the kth smallest and largest element in a specified array

Java Basic: Exercise-161 with Solution

Write a Java program to find the kth smallest and largest element in a given array. Elements in the array can be in any order.

Pictorial Presentation:

Java Basic Exercises: Find the kth smallest and largest element in a specified array.

Sample Solution:

Java Code:

import java.util.*;
public class Solution {
  public static void main(String[] args) 
    {
        Integer arr[] = new Integer[]{1, 4, 17, 7, 25, 3, 100};
        int k = 2;
		System.out.println("Original Array: ");
		System.out.println(Arrays.toString(arr));
		System.out.println("K'th smallest element of the said array: ");
        Arrays.sort(arr);       		
        System.out.print(arr[k-1] + " ");
		System.out.println("\nK'th largest element of the said array:");          
        Arrays.sort(arr, Collections.reverseOrder());  		
        System.out.print(arr[k-1] + " ");
	}
}

Sample Output:

Original Array: 
[1, 4, 17, 7, 25, 3, 100]
K'th smallest element of the said array: 
3 
K'th largest element of the said array:
25 

Flowchart:

Flowchart: Java exercises: Find the kth smallest and largest element in a specified array.

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Java program to find the k smallest elements in a given array. Elements in the array can be in any order.
Next: Write a Java program to find the numbers greater than the average of the numbers of a given array.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe