Arrays.parallelSort(char[]): This method is available in java.util.Arrays class of Java,
Syntax:
void java.util.Arrays.parallelSort(char[] a)
This method takes one argument of type char array as its parameter. This method sorts the specified array into ascending numerical order.
Parameters: One parameter is required for this method.
a: the array to be sorted.
Returns: NA
Exceptions: NA
Approach
Java
import java.util.Arrays;public class ArraysparallelSortchar {public static void main(String[] args) {char a[] = { 'x', 'a', 'p', 'b' };Arrays.parallelSort(a);System.out.println(Arrays.toString(a));}}
Output:
[a, b, p, x]
No comments:
Post a Comment