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

  • برمجة جافا
  • برمجة

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

Expected 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

الأجوبة

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 
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...