剑指 Offer 50. 第一个只出现一次的字符

tech2025-01-17  8

剑指 Offer 50. 第一个只出现一次的字符 - 力扣(LeetCode)

两次遍历:

class Solution { public: char firstUniqChar(string s) { int a[26] = {0}; for(const auto &c : s) ++a[c - 'a']; for(const auto &c : s){ if(a[c - 'a'] == 1) return c; } return ' '; } };
最新回复(0)