将一段话切分成单词,按字典顺序排序

 class mp{
 public static void main(String[] args){
  int i=0;
  int j=0;
  String temp="";
  String article=" The Source for Java Developers";
  String[] words=article.split("[ ]");
  j=words.length;//切分成j个单词
  System.out.print("切分成这些单词: ");
  for(i=0;i<j;i++){
  System.out.print(words[i]+" ");
  }
  
  System.out.println();
  
  //下面比较这j个单词
  for(int k=0;k<j;k++){
   System.out.print("第"+(k+1)+"次比较结果:  ");
   //下面的程序运行时只比较了一次两个相邻的单词
   for(i=0;i<j-1;i++){
    
   if (words[i].compareTo(words[i+1])>0){ //如果words[i]比words[i+1]排序大,则交换两者位置
    temp=words[i+1];
    words[i+1]=words[i];
    words[i]=temp;
    
   }
   
   }
   
   for(i=0;i<j;i++){
    System.out.print(words[i]+" ");
    }
   
   System.out.println();
  }
  
  System.out.print("最终结果为: ");
  
  for(i=0;i<j;i++){
   System.out.print(words[i]+"  ");
   }
   
  }
  
 }

 

运行结果-----------------------------------------------

切分成这些单词: The Source for Java Developers
第1次比较结果:  Source The Java Developers for
第2次比较结果:  Source Java Developers The for
第3次比较结果:  Java Developers Source The for
第4次比较结果:  Developers Java Source The for
第5次比较结果:  Developers Java Source The for
最终结果为: Developers  Java  Source  The  for 

### 回答1: 可以使用 Python 中的 split() 函数将字符串分成单词,再使用 sorted() 函数对单词进行排序。 例如,假设我们有一个字符串: ``` text = "This is a sample text, just for demonstration." ``` 我们可以使用 split() 函数将其分成单词: ``` words = text.split() ``` 这将返回一个包含所有单词的列表: ``` ['This', 'is', 'a', 'sample', 'text,', 'just', 'for', 'demonstration.'] ``` 然后,我们可以使用 sorted() 函数对这些单词进行排序: ``` sorted_words = sorted(words) ``` 这将返回一个按字母顺序排序单词列表: ``` ['This', 'a', 'demonstration.', 'for', 'is', 'just', 'sample', 'text,'] ``` 完整的代码如下: ``` text = "This is a sample text, just for demonstration." words = text.split() sorted_words = sorted(words) print(sorted_words) ``` ### 回答2: 在Python中,我们可以使用split()方法来分字符串成单词,并使用sorted()函数对分后的单词进行排序。 首先,假设我们有一个字符串的变量名为sentence,其中包含了一句话。我们可以使用split()方法将这句话分成单词。例如: sentence = "我爱学习编程" words = sentence.split() 接下来,我们可以使用sorted()函数对分后的单词进行排序。sorted()函数可以接收一个可迭代对象作为参数,并返回一个排序后的新列表。在排序字符串时,默认是按照字母顺序进行排序。例如: sorted_words = sorted(words) 最后,我们可以打印出排序后的单词列表。例如: for word in sorted_words: print(word) 上述代码将会按照字母顺序打印出分并排序后的单词。 总结起来,我们可以使用split()方法分字符串成单词,并使用sorted()函数对单词进行排序。希望这个简短的回答对您有帮助! ### 回答3: 在Python中,可以通过split()函数将字符串分成单词,并利用排序函数对单词进行排序。 首先,使用input()函数让用户输入一个句子一段文字。例如: text = input("请输入一个句子一段文字:") 然后,使用split()函数将文字分成单词。split()函数会默认使用空格作为分隔符,将句子分成单词列表。例如: words = text.split() 接下来,使用sorted()函数对单词列表进行排序。sorted()函数会按照字母顺序单词进行排序,默认是升序。例如: sorted_words = sorted(words) 最后,可以通过打印sorted_words输出排序后的单词列表。例如: print(sorted_words) 完整代码如下: ```python text = input("请输入一个句子一段文字:") words = text.split() sorted_words = sorted(words) print(sorted_words) ``` 这样,就可以实现单词排序的功能了。注意,以上代码只能对英文单词进行排序,对于中文或其他语言的单词排序可能需要使用其他方法。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值