3.LeetCode(初级算法)字符串篇-字符串中的第一个唯一字符C++

建立一个26或者256个size大小的数组用来存放太low了,不适合面试。unordered_map代码更简洁一些。

class Solution {
public:
    int firstUniqChar(string s) {
        unordered_map map;
        for(auto c : s) map[c]++;
        for(int i=0; i

你可能感兴趣的:(LeetCode)