其他分享
首页 > 其他分享> > 821. 字符的最短距离

821. 字符的最短距离

作者:互联网

821. 字符的最短距离

给你一个字符串 s 和一个字符 c ,且 cs 中出现过的字符。

返回一个整数数组 answer ,其中 answer.length == s.lengthanswer[i]s 中从下标 i 到离它 最近 的字符 c距离

两个下标 ij 之间的 距离abs(i - j) ,其中 abs 是绝对值函数。

示例 1:

输入:s = "loveleetcode", c = "e"
输出:[3,2,1,0,1,0,0,1,2,2,1,0]
解释:字符 'e' 出现在下标 3、5、6 和 11 处(下标从 0 开始计数)。
距下标 0 最近的 'e' 出现在下标 3 ,所以距离为 abs(0 - 3) = 3 。
距下标 1 最近的 'e' 出现在下标 3 ,所以距离为 abs(1 - 3) = 2 。
对于下标 4 ,出现在下标 3 和下标 5 处的 'e' 都离它最近,但距离是一样的 abs(4 - 3) == abs(4 - 5) = 1 。
距下标 8 最近的 'e' 出现在下标 6 ,所以距离为 abs(8 - 6) = 2 。

示例 2:

输入:s = "aaab", c = "b"
输出:[3,2,1,0]

提示:

简单遍历即可

class Solution {
public:
    vector<int> shortestToChar(string s, char c) {
        //记录答案的vector全部初始化为s.size()
        vector<int>res(s.size(),s.size());
        //c到自身的距离为0
        vector<int>a;
        for(int i=0;i<s.size();i++){
            if(s[i]==c){
                res[i]=0;
                //c在数组中的位置记录下来
                a.push_back(i);
            }
        }
        //遍历res数组
        for(int i=0;i<res.size();i++){
            //对于不是c的数进行判断
            if(res[i]!=0){
                //取这个数与出现c的位置的绝对值的最小值
                for(int j=0;j<a.size();j++){
                    res[i]=min(res[i],abs(i-a[j]));
                }
            }
        }
        return res;
    }
};

标签:字符,下标,距离,abs,短距离,answer,821,size
来源: https://www.cnblogs.com/BailanZ/p/16164073.html