题目描述
在一个字符串(0<=字符串长度<=10000,全部由字母组成)中找到第一个只出现一次的字符,并返回它的位置, 如果没有则返回 -1(需要区分大小写).
类似桶排序的思路:
注意:在java中String的长度不能用str.size(),而只有str.length();
public class Solution { public int FirstNotRepeatingChar(String str) { int []cnt=new int[130]; for(int i=0;i