344.翻转字符串+387.字符串中的第一个唯一字符

目录

一、翻转字符串

二、字符串中的第一个唯一字符


一、翻转字符串

344. 反转字符串 - 力扣(LeetCode)

344.翻转字符串+387.字符串中的第一个唯一字符_第1张图片 

class Solution {
public:
    void reverseString(vector& s) {
        int start=0;
        int end = s.size()-1;
        while(start < end)
        {
            swap(s[start],s[end]);
            start++;
            end--;
        }
    }
};

二、字符串中的第一个唯一字符

387. 字符串中的第一个唯一字符 - 力扣(LeetCode)

344.翻转字符串+387.字符串中的第一个唯一字符_第2张图片

class Solution {
public:
    int firstUniqChar(string s) {
        vectorCout(26,0);

        for(auto str :s)
        {
            Cout[str -'a']++;
        }

        for(int i = 0;i

 

你可能感兴趣的:(牛客/力扣,算法)