- 题目:在一个字符串中找到第一个只出现一次的字符。如输入abaccdeff,则输出b。
public static void main(String[] args) {
// TODO Auto-generated method stub
String str="abbaccdeff";
String c="";
for(int i=0;i<str.length();i++){
String temp=str.substring(0, i)+str.substring(i+1);
int idx=temp.indexOf(str.charAt(i));
if(idx==-1){//剩下的字符串中没有,就是唯一的
c=String.valueOf(str.charAt(i));
//System.out.println(c);
break;
}
}
System.out.println(c);
}