java去重的五种方式

main方法
public static void main(String[] args) {
String s = "aaabbbcccddddqweqwertt";
System.out.println(remove1(s));//方法一
System.out.println(remove2(s));//方法二
System.out.println(remove3(s));//方法三
System.out.println(remove4(s));//方法四
System.out.println(remove5(s));//方法五
}
方法一:
//字符串
public static String remove1(String str){
String s = "";

for (int i = 0; i < str.length(); i++) { String arr =str.charAt(i) + ""; if (s.indexOf(arr) == -1) { s=s+a

java去重的五种方式最先出现在Python成神之路

版权声明:
作者:dingding
链接:https://www.techfm.club/p/8593.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>