字符串中的第一个唯一字符java

给定一个字符串,找到它的第一个不重复的字符,并返回它的索引。如果不存在,则返回 -1。

示例:

s = “leetcode”
返回 0

s = “loveleetcode”
返回 2

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/first-unique-character-in-a-string
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

class Solution {
    
    
    public int firstUniqChar(String s) {
    
    
        int[] mark = new int[26];
        for(int i=0;i<s.length();i++)
        {
    
    
            char ch = s.charAt(i);
            mark[ch-'a']++;
        }
        for(int i=0;i<s.length();i++)
        {
    
    
            char ch = s.charAt(i);
            if(mark[ch-'a']==1)
            {
    
    
                return i;
            }
        }
        return -1;
    }
}

猜你喜欢

转载自blog.csdn.net/weixin_43824233/article/details/111590316