字符串中的第一个唯一字符
作者:互联网
- hash法
public int firstUniqChar(String s) {
HashMap<Character,Integer> map = new HashMap<>();
for(int i = 0;i < s.length();i++){
map.put(s.charAt(i),map.getOrDefault(s.charAt(i),0)+1);
}
for(int i = 0;i < s.length();i++){
if(map.get(s.charAt(i)) == 1) return i;
}
return -1;
}
- indexof
public int firstUniqChar(String s) {
for(int i = 0;i < s.length();i++){
if(s.indexOf(s.charAt(i)) == s.lastIndexOf(s.charAt(i)))
return i;
}
return -1;
}
lastIndexOf() 方法有以下四种形式:
-
public int lastIndexOf(int ch): 返回指定字符在此字符串中最后一次出现处的索引,如果此字符串中没有这样的字符,则返回 -1。
-
public int lastIndexOf(int ch, int fromIndex): 返回指定字符在此字符串中最后一次出现处的索引,从指定的索引处开始进行反向搜索,如果此字符串中没有这样的字符,则返回 -1。
-
public int lastIndexOf(String str): 返回指定子字符串在此字符串中最右边出现处的索引,如果此字符串中没有这样的字符,则返回 -1。
-
public int lastIndexOf(String str, int fromIndex): 返回指定子字符串在此字符串中最后一次出现处的索引,从指定的索引开始反向搜索,如果此字符串中没有这样的字符,则返回 -1。
lastIndexOf说是从最后开始扫描 idnexOf是从开头扫描
标签:字符,lastIndexOf,第一个,int,字符串,public,charAt 来源: https://blog.csdn.net/qq_54494937/article/details/120248883