统计字符串中每个字符出现的次数,然后再从左到右遍历字符串,找出出现次数为1的字符串。
class Solution {
public:
int FirstNotRepeatingChar(string str) {
if(!str.size()) return -1;
map counter;
for(int i = 0;i
统计字符串中每个字符出现的次数,然后再从左到右遍历字符串,找出出现次数为1的字符串。
class Solution {
public:
int FirstNotRepeatingChar(string str) {
if(!str.size()) return -1;
map counter;
for(int i = 0;i