判断一个字符串是否全部不相同问题:一个字符串,判断每个字符串都不一样
【摘要】
问题:一个字符串,判断每个字符串都不一样
测试字符串:【阿速度较快了快】,由于有2个快字,故而返回【false】
package Action; public class test { public static void main(String[] args) { String s = "阿速度较快了快"; System.ou...
问题:一个字符串,判断每个字符串都不一样
测试字符串:【阿速度较快了快】,由于有2个快字,故而返回【false】
-
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】
-
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;
-
}
-
}
这个其实比较简单,但是在判断的时候很多的时候会用到,当然,还可以采用更快捷的方式。我这个直接暴力了。
文章来源: laoshifu.blog.csdn.net,作者:红目香薰,版权归原作者所有,如需转载,请联系作者。
原文链接:laoshifu.blog.csdn.net/article/details/122796339
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)