LeetCode Daily 21

Posted LWHBLOG

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode Daily 21相关的知识,希望对你有一定的参考价值。

2022-2-2 T.2000 反转单词前缀

 

题目描述:

给你一个下标从 0 开始的字符串 word 和一个字符 ch 。找出 ch 第一次出现的下标 i ,反转 word 中从下标 0 开始、直到下标 i 结束(含下标 i )的那段字符。如果 word 中不存在字符 ch ,则无需进行任何操作。

例如,如果 word = "abcdefd" 且 ch = "d" ,那么你应该 反转 从下标 0 开始、直到下标 3 结束(含下标 3 )。结果字符串将会是 "dcbaefd" 。
返回 结果字符串 。

 

示例:

输入:word = "abcdefd", ch = "d"
输出:"dcbaefd"
解释:"d" 第一次出现在下标 3 。 
反转从下标 0 到下标 3(含下标 3)的这段字符,结果字符串是 "dcbaefd"

 

思路:

reverse方法参数为迭代器,string初始化自带substr方法。

 

代码:

class Solution 
public:
    string reversePrefix(string word, char ch) 
        int position = word.find(ch); 
        if(position > word.size()) return word;
        string ans(word, 0, position + 1);
        reverse(ans.begin(), ans.end());
        ans += word.substr(position + 1, word.size() - position);
        return ans;
    
;

 

以上是关于LeetCode Daily 21的主要内容,如果未能解决你的问题,请参考以下文章

[栈] leetcode 739 Daily Temperatures

[LeetCode] Daily Temperatures

LeetCode - Daily Temperatures

LeetCode Daily 12

[LeetCode] Daily Temperatures 日常温度

Leetcode739 Daily Temperatures