试题B不同字串

problemJB04.png

代码实现

public static int getNumOfSubstring(String str){
        HashSet set = new HashSet();
        // 外层确定字符串的长度
        for(int i=1;i<=str.length();i++){
            // 内层遍历长度为i的字符串
            for(int j=0;j

你可能感兴趣的:(试题B不同字串)