Leetcode 387. 字符串中的第一个唯一字符——java数组实现(哈希)

387. 字符串中的第一个唯一字符

字符串中的第一个唯一字符
知识点:哈希表

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

示例 1:

输入: s = “leetcode”
输出: 0

示例 2:

输入: s = “loveleetcode”
输出: 2

示例 3:

输入: s = “aabb”
输出: -1

数组实现

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

你可能感兴趣的:(Leetcode,leetcode,哈希算法,算法)