leetcode 刷题记录(高频算法面试题汇总)--字符串中的第一个唯一字符

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

案例:

s = "leetcode"
返回 0.

s = "loveleetcode",
返回 2.
class Solution:
    def firstUniqChar(self, s: str) -> int:
        ch = [0]*26
        if len(s)==0:
            return -1
        for i in range(len(s)):
            ch[ord(s[i])-ord('a')] += 1
        for i in range(len(s)):
            if ch[ord(s[i])-ord('a')] == 1:
                return i
        return -1
class Solution {
public:
    int firstUniqChar(string s) {
        if(s.size()==0) return -1;
        int ch[26]={0};
        for(int i=0;i

问题&思路

  1. python中的字符转数字函数:ord;python中的list初始化
  2. 先统计每个字符出现次数,第二次遍历s,找到第一个ch中为1的字符

你可能感兴趣的:(leetcode)