按升序对句子中的单词进行排序的 Java 程序
要按升序对句子中的单词进行排序,Java 代码如下 −
示例
import java.util.*; public class Demo{ static void sort_elements(String []my_str, int n){ for (int i=1 ;i<n; i++){ String temp = my_str[i]; int j = i - 1; while (j >= 0 && temp.length() < my_str[j].length()){ my_str[j+1] = my_str[j]; j--; } my_str[j+1] = temp; } } public static void main(String args[]){ String []my_arr = {"This", "is", "a", "sample"}; int len = my_arr.length; sort_elements(my_arr,len); System.out.print("The sorted array is : "); for (int i=0; i<len; i++) System.out.print(my_arr[i]+" "); } }
输出
The sorted array is : a is This sample
一个名为 Demo 的类包含一个名为“sort_elements”的函数。此函数遍历一个字符串并检查字符串中每个单词的长度,然后根据其长度排列它们。在 main 函数中,定义了一个 aString 数组,并将它的长度分配给变量。在此字符串上调用“sort_elements”函数,并在控制台上显示已排序的数组。
广告