LeetCode 821 字符的最短距离[暴力 字符串] HERODING的LeetCode之路

Posted HERODING23

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 821 字符的最短距离[暴力 字符串] HERODING的LeetCode之路相关的知识,希望对你有一定的参考价值。

解题思路:
仔细观察字符串中的每个字符,你就能发现每个字符都在两个target字符之间或者在边界和target之间,那么最多只用正向遍历一次反向遍历一次就能够计算每个字符离最近的target的距离。初始化都是最大距离(即字符串长度),然后正向遍历,根据target的位置更新target右边字符的距离,再反向遍历,根据target的位置更新target左边字符的距离,代码如下:

class Solution 
public:
    vector<int> shortestToChar(string s, char c) 
        int n = s.size();
        int pre = n - 1;
        vector<int> ans(n, pre);
        for(int i = 0; i < n; i ++) 
            if(s[i] == c) 
                ans[i] = 0;
                pre = i;
             else 
                ans[i] = abs(pre - i);
            
        
        pre = 0;
        for(int i = n - 1; i >= 0; i --) 
            if(s[i] == c) 
                pre = i;
             else 
                ans[i] = min(ans[i], abs(pre - i));
            
        
        return ans;
    
;

以上是关于LeetCode 821 字符的最短距离[暴力 字符串] HERODING的LeetCode之路的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode 386. 字典序排数 / 821. 字符的最短距离 / 388. 文件的最长绝对路径

LeetCode 821. Shortest Distance to a Character

leetcode 0215

算法千题案例每日LeetCode打卡——98.字符的最短距离

算法千题案例每日LeetCode打卡——98.字符的最短距离

关于三分的暴力技巧(暴力好)