1 Star 0 Fork 0

MetaverseMobile/leetcode

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
821_字符的最短距离.cpp 908 Bytes
一键复制 编辑 原始数据 按行查看 历史
TieNan2019 提交于 2020-12-02 17:06 . Create 821_字符的最短距离.cpp
class Solution {
public:
vector<int> shortestToChar(string S, char C) {
vector<int> dist(S.size(), INT_MAX);
vector<int> idx;
for (int i = 0; i < S.size(); i++)
if (S[i] == C)
idx.push_back(i);
for (int center : idx) {
int i = center;
dist[i] = 0;
do {
dist[i] = min(center - i, dist[i]);
i--;
} while (i >= 0 && S[i] != C);
i = center;
do {
dist[i] = min(i - center, dist[i]);
i++;
} while (i < S.size() && S[i] != C);
}
return dist;
}
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/MetaverseMobile/leetcode.git
[email protected]:MetaverseMobile/leetcode.git
MetaverseMobile
leetcode
leetcode
main

搜索帮助