Java - 仅对数组的子部分进行排序

2022-09-04 06:51:30

我有一组字符

String a = "badabcde";
char[] chArr = a.toCharArray(); // 'b','a','d','a','b','c','d','e'

在给定开始和结束索引的情况下,仅对数组的一部分进行排序的最简单方法是什么?

// 'b','a','d','a','b','c','d','e'
subSort(array, startIndex, endIndex);

Ex: 
subSort(chArr, 2, 5);
// 'b','a','a','b','c','d','d','e' // sorts indices 2 to 5 

答案 1

我认为公共静态 void sort(char[] a, int fromIndex, int toIndex) 回答了你的问题。

String a = "badabcde";
char[] chArr = a.toCharArray(); // 'b','a','d','a','b','c','d','e'

// fromIndex - the index of the first element (inclusive) to be sorted
// toIndex - the index of the last element (exclusive) to be sorted
Arrays.sort(chArr,2,6);

答案 2

在类中使用公共静态 void sort(char[] a, int fromIndex, int toIndex)。Arrays

在您的示例中:

Arrays.sort(chArr,2,6); // note that fromIndex is inclusive
                        // but toIndex is exclusive

推荐