其他分享
首页 > 其他分享> > LeetCode——387.字符串中的第一个唯一字符

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

作者:互联网

一、题目

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

示例:

s = “leetcode”
返回 0

s = “loveleetcode”
返回 2

提示:你可以假定该字符串只包含小写字母。

二、java解法

1.遍历两遍哈希表

class Solution {
    public int firstUniqChar(String s) {
        Map<Character, Integer> frequency = new HashMap<Character, Integer>();
        for (int i = 0; i < s.length(); ++i) {
            char ch = s.charAt(i);
            frequency.put(ch, frequency.getOrDefault(ch, 0) + 1);
        }
        for (int i = 0; i < s.length(); ++i) {
            if (frequency.get(s.charAt(i)) == 1) {
                return i;
            }
        }
        return -1;
    }
}

思路:遍历两遍哈希表,第一次统计每个字符出现的次数,第二次根据字符顺序返回出现次数为1的字符

2.

class Solution {
    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;
    }
}

思路:遍历一次字符串,该字符的第一个索引和最后一个索引相同则返回,如果都不相同则返回-1。

标签:返回,字符,return,charAt,int,frequency,387,字符串,LeetCode
来源: https://blog.csdn.net/FuckerGod/article/details/111573353