常见 算法 字符串查重

判断一串字符串中有没有重复的字母,
如:abc,则返回true,abbc,则返回false

import java.util.Scanner;
public class 数字黑洞 {
	public static void main(String[] args) {
	Scanner sc=new Scanner(System.in);
	String str =sc.next();
	//调用方法
	System.out.println(checkDifferent(str));
}
//字符串查重方法
private static boolean checkDifferent(String src) {
        //判断字符串是否为空
	if (src.isEmpty())return true;
	//用来标记的数组
	int[] temp = new int[128];
	for (int i = 0; i < src.length(); i++) {
	 //对号入座
	  int c = (int)(src.charAt(i));
	  if (temp[c]>0)return false;
	   else temp[c]++;
	}
	 return true;
     }
}

你可能感兴趣的:(常见算法,java)