问题:一个字符串,判断每个字符串都不一样
测试字符串:【阿速度较快了快】,由于有2个快字,故而返回【false】
代码语言:javascript复制package Action;
public class test {
public static void main(String[] args) {
String s = "阿速度较快了快";
System.out.println(isf(s));
}
public static boolean isf(String str) {
if (str == null) {
return false;
}
for (int i = 0; i < str.length(); i ) {
for (int j = 1; j < str.length(); j ) {
if ((str.charAt(i) == str.charAt(j))&&i!=j) {
System.out.println(i ":" j "相同");
return false;
}
}
}
return true;
}
}
下标的4与6相同故而返回false
测试字符串【我有一个梦想】,由于都不相同,需要返回【true】
代码语言:javascript复制package Action;
public class test {
public static void main(String[] args) {
String s = "我有一个梦想";
System.out.println(isf(s));
}
public static boolean isf(String str) {
if (str == null) {
return false;
}
for (int i = 0; i < str.length(); i ) {
for (int j = 1; j < str.length(); j ) {
if ((str.charAt(i) == str.charAt(j))&&i!=j) {
System.out.println(i ":" j "相同");
return false;
}
}
}
return true;
}
}
这个其实比较简单,但是在判断的时候很多的时候会用到,当然,还可以采用更快捷的方式。我这个直接暴力了。