美文网首页
机试题:检索一个字符串中有多少种字符

机试题:检索一个字符串中有多少种字符

作者: 大小说家RCQ | 来源:发表于2017-06-04 19:46 被阅读0次

    检索字符的种类

    package com.swun.se;
    import java.util.*;
    
    public class TestDemo{
        public static void main(String args[])throws Exception{
          String str = "abcdeffffffffffffffffffff"; 
          char[] arr = str.toCharArray(); 
           int kinds = TestDemo.countKinds(arr);
          System.out.println("有"+kinds+"种字符");
          
        }
        public static int countKinds(char[] args){
          Set<Character> set = new HashSet<>();
          for(int i=0;i<args.length;i++){
              set.add(args[i]);
          }
           return set.size(); 
            
          
      }
    
      
    }
    

    相关文章

      网友评论

          本文标题:机试题:检索一个字符串中有多少种字符

          本文链接:https://www.haomeiwen.com/subject/ezhbfxtx.html