算法之“统计字符串中单词的个数”

如,给定String,求此字符串的单词数量。字符串不包括标点,大写字母。例如String str=”hello world hello hi”;,单词数量为3,分别是:hello world hello hi 。

public static void main(String[] args){
    int count=0;
    String str="hello world hello hi";
    String newStr="";
    HashMap<String,String> map=new HashMap<String,String>;
    String[] arr=str.split(" ");
    for(int i=0;i<arr.length;i++){
        if(!map.containskey(arr[i])){
            map.put(arr[i],"1");
            count++;
            newStr+=arr[i];
          }
      }
    System.out.println("单词的个数为:"+count+":"+newStr);

    }

 

点赞