Open threedayAAAAA opened 1 year ago
1-4 只能算出从左到右的距离 所以需要反向操作一下,算出从右到左的距离,同时取值时进行对比,取较小值即为最优距离
function shortestToChar(s: string, c: string): number[] {
const sArr = s.split('')
let indexStack: number[] = []
const result = new Array(s.length).fill(2000)
sArr.forEach((item, index) => {
while(item === c && indexStack.length){
const targetIndex = indexStack[indexStack.length - 1]
result[targetIndex] = index - targetIndex
indexStack.pop()
}
if(item === c){
result[index] = 0
} else {
indexStack.push(index)
}
})
indexStack = []
for(let index = sArr.length - 1; index >= 0; index--){
while(sArr[index] === c && indexStack.length){
const targetIndex = indexStack[indexStack.length - 1]
result[targetIndex] = Math.min(result[targetIndex], targetIndex - index)
indexStack.pop()
}
if(sArr[index] === c){
result[index] = 0
} else {
indexStack.push(index)
}
}
return result
};
思路同方法一,只不过我们每次只需要存个变量代表上一次遇到指定字符的index,即可算出当前元素的距离,不需要使用栈
function shortestToChar(s: string, c: string): number[] {
let preTargetIndex = -2000
const result = new Array(s.length).fill(2000)
for(let index = 0; index < s.length; index++){
if(s[index] === c){
preTargetIndex = index
}
result[index] = Math.min(index - preTargetIndex, result[index])
}
preTargetIndex = 2000
for(let index = s.length - 1; index >= 0; index--){
if(s[index] === c){
preTargetIndex = index
}
result[index] = Math.min(preTargetIndex - index, result[index])
}
return result
};
暴力求解
function shortestToChar (s: string, c: string): number[] {
const len = s.length;
const indexArr = [];
const resultArr = [];
for (let i = 0; i < len; i++) {
if (s[i] === c) {
indexArr.push(i);
}
}
const indexLen = indexArr.length;
for (let i = 0; i < len; i++) {
let sortData = Math.abs(i - indexArr[0]);
for (let j = 1; j < indexLen; j++) {
const value = Math.abs(i - indexArr[j]);
sortData = value > sortData ? sortData : value;
}
resultArr.push(sortData);
}
return resultArr;
}
function shortestToChar (s: string, c: string): number[] {
const len = s.length;
const stack = [];
const result = [];
const max = len * len;
let currentIndex = max;
let lastIndex = max;
const setFn = () => {
let peek = stack.pop();
const sort = result[peek];
const nextValue = Math.abs(currentIndex - peek);
const lastValue = Math.abs(lastIndex - peek);
const value = nextValue > lastValue ? lastValue : nextValue;
result[peek] = value > sort ? sort : value;
}
for (let i = 0; i < len; i++) {
const isEqual = s[i] === c;
result[i] = isEqual ? 0 : Math.abs(i - currentIndex);
if (isEqual) {
lastIndex = currentIndex;
currentIndex = i;
}
while(stack.length && isEqual) {
setFn();
}
if (!isEqual) {
stack.push(i);
}
}
while(stack.length) {
setFn();
}
return result;
}
指针
function shortestToChar (s: string, c: string): number[] {
const len = s.length;
const max = len * len;
let currentIndex = max;
let lastIndex = max;
let shortIndex = 0;
let result = new Array(len).fill(-1);
for (let i = 0; i < len; i++) {
result[i] = Math.abs(i - currentIndex);
if (s[i] === c) {
lastIndex = currentIndex;
currentIndex = i;
for(let j = shortIndex; j <= currentIndex; j++) {
const value = Math.abs(j - currentIndex);
const lastValue = Math.abs(j - lastIndex);
result[j] = lastValue > value ? value : lastValue;
}
shortIndex = i + 1;
}
}
return result;
}
function shortestToChar(s: string, c: string): number[] {
const result: number[] = [];
let stack: number[] = [];
let preCIndex = -1;
for(let i = 0; i < s.length; i++) {
stack.push(i);
if(s[i] === c) {
for(let j = 0; j < stack.length; j++ ) {
result.push(
preCIndex === -1 ? stack.length - j - 1 :
Math.min(stack[stack.length - 1] - stack[j], stack[j] - preCIndex));
}
preCIndex = i;
stack = [];
}
}
if (stack.length) {
for(let j = 0; j < stack.length; j++ ) {
result.push(stack[j] - preCIndex);
}
}
return result;
};
给你一个字符串 s 和一个字符 c ,且 c 是 s 中出现过的字符。
返回一个整数数组 answer ,其中 answer.length == s.length 且 answer[i] 是 s 中从下标 i 到离它 最近 的字符 c 的 距离 。
两个下标 i 和 j 之间的 距离 为 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]
提示: 1 <= s.length <= 104 s[i] 和 c 均为小写英文字母 题目数据保证 c 在 s 中至少出现一次
来源:力扣(LeetCode) 链接:https://leetcode.cn/problems/shortest-distance-to-a-character 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。