当前位置:   article > 正文

华为机试:【中级】单词倒排序_单词倒叙 题目描述 输入单行英文句子,里面包含英文字母,空格以及,.? 三种标点符号

单词倒叙 题目描述 输入单行英文句子,里面包含英文字母,空格以及,.? 三种标点符号

题目描述

对字符串中的所有单词进行倒排。

说明:

1、每个单词是以26个大写或小写英文字母构成;

2、非构成单词的字符均视为单词间隔符;

3、要求倒排后的单词间隔符以一个空格表示;如果原字符串中相邻单词间有多个间隔符时,倒排转换后也只允许出现一个空格间隔符;

4、每个单词最长20个字母;

输入描述:

输入一行以空格来分隔的句子

输出描述:

输出句子的逆序

  1. import java.util.*;
  2. public class Main{
  3. public static void main(String[] args){
  4. Scanner scan=new Scanner(System.in);
  5. while(scan.hasNext()){
  6. String str=scan.nextLine();
  7. int i=0;
  8. ArrayList<String> list=new ArrayList<>();
  9. for(int j=0; j<str.length(); j++){
  10. if((str.charAt(j)>='a' && str.charAt(j)<='z') || (str.charAt(j)>='A' && str.charAt(j)<='Z')){
  11. if(j==str.length()-1){
  12. list.add(str.substring(i,j+1));
  13. }
  14. }
  15. else{
  16. if((str.charAt(i)>='a' && str.charAt(i)<='z') || (str.charAt(i)>='A' && str.charAt(i)<='Z')){
  17. list.add(str.substring(i,j));
  18. i=j+1;
  19. }
  20. else{
  21. i=j+1;
  22. }
  23. }
  24. }
  25. String s="";
  26. for(int j=list.size()-1; j>=0; j--){
  27. if(j==list.size()-1){
  28. s=s+list.get(j);
  29. }
  30. else{
  31. s=s+" "+list.get(j);
  32. }
  33. }
  34. System.out.println(s);
  35. }
  36. }
  37. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/224093
推荐阅读
相关标签
  

闽ICP备14008679号