java解法

给定一个字符串 s 和需要排除的字符 excludeChar。
找出字符串中不包含 excludeChar 且满足以下条件的最长子字符串长度:
子字符串中每个字符最多出现两次。
解决方案

使用滑动窗口技术:
定义窗口的左右边界 left 和 right。
使用哈希表 charCount 记录窗口内每个字符的出现次数。
遍历字符串:
如果当前字符是 excludeChar:
重置窗口:移动 left 指针到当前字符之后,并清空 charCount。
如果当前字符不是 excludeChar:
将其加入窗口,并更新其计数。
如果某字符在窗口内的计数超过 2,则移动 left 指针收缩窗口,直到计数满足条件。
更新当前窗口的最大长度

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        
        // 输入需要排除的字符
        String excludeChar = sc.nextLine();
        
        // 输入待处理的字符串
        String inputString = sc.nextLine();
        
        // 调用方法计算最长子字符串长度
        System.out.println(maxSubstringLength(inputString, excludeChar.charAt(0)));
    }

    /**
     * 计算最长满足条件的子字符串长度
     * @param s 输入字符串
     * @param excludeChar 需要排除的字符
     * @return 满足条件的最长子字符串长度
     */
    public static int maxSubstringLength(String s, char excludeChar) {
        // 记录最长子字符串长度
        int maxLength = 0;
        
        // 用于统计当前窗口内每个字符的出现次数
        Map<Character, Integer> charCount = new HashMap<>();
        
        // 滑动窗口的左边界
        int left = 0;

        // 遍历字符串,right 为窗口的右边界
        for (int right = 0; right < s.length(); right++) {
            char currentChar = s.charAt(right);

            // 如果当前字符是需要排除的字符
            if (currentChar == excludeChar) {
                // 将窗口左边界移动到当前字符之后,并清空计数
                left = right + 1;
                charCount.clear();
                continue;
            }

            // 将当前字符加入窗口,并更新其计数
            charCount.put(currentChar, charCount.getOrDefault(currentChar, 0) + 1);

            // 如果当前字符的出现次数超过 2,则收缩窗口
            while (charCount.get(currentChar) > 2) {
                char leftChar = s.charAt(left); // 获取左边界字符
                charCount.put(leftChar, charCount.get(leftChar) - 1); // 减少左边界字符的计数

                // 如果某字符的计数为 0,则从哈希表中移除
                if (charCount.get(leftChar) == 0) {
                    charCount.remove(leftChar);
                }
                
                // 移动左边界
                left++;
            }

            // 更新最长子字符串长度
            maxLength = Math.max(maxLength, right - left + 1);
        }

        return maxLength;
    }
}

 class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">

C++解法

更新中
 class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">

C解法

更新中
 class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">

JS解法

给定一个字符串 s 和一个需要排除的字符 excludeChar。
找出不包含 excludeChar 且满足以下条件的最长子字符串长度:
子字符串中每个字符最多出现两次。
解决方案

使用滑动窗口技术和一个哈希表来统计窗口内字符的出现次数。
滑动窗口的核心思想:
定义窗口的左右边界 left 和 right。
遍历字符串,动态调整窗口的大小和位置以满足条件:
如果当前字符是 excludeChar,重置窗口。
如果当前字符不是 excludeChar,更新其计数。
如果某字符在窗口内的计数超过 2,移动 left 指针收缩窗口,直到条件满足。
在每一步中,记录窗口的最大长度

const readline = require("readline");

// 创建输入输出接口
const rl = readline.createInterface({
  input: process.stdin,
  output: process.stdout,
});

// 用于存储输入
const inp = [];

// 处理每行输入
rl.on("line", (line) => {
  inp.push(line);

  // 当输入的两行都完成时,调用逻辑处理函数
  if (inp.length === 2) {
    console.log(maxSubstringLength(inp[1], inp[0])); // 调用主逻辑函数
    inp.length = 0; // 重置输入存储
  }
});

/**
 * 计算最长满足条件的子字符串长度
 * @param {string} s - 输入字符串
 * @param {string} excludeChar - 要排除的字符
 * @returns {number} - 返回最长子字符串长度
 */
function maxSubstringLength(s, excludeChar) {
  // 将排除的字符转换为 ASCII 编码
  const exclude = excludeChar.charCodeAt(0);

  // 初始化最长子字符串长度
  let maxLength = 0;

  // 用于记录当前窗口内字符的出现次数
  let charCount = {};

  // 滑动窗口的左边界
  let left = 0;

  // 遍历字符串,右边界为 `right`
  for (let right = 0; right < s.length; right++) {
    const currentChar = s.charCodeAt(right); // 当前字符的 ASCII 编码

    // 如果当前字符是需要排除的字符
    if (currentChar === exclude) {
      // 将窗口左边界移动到当前字符之后,并清空字符计数
      left = right + 1;
      charCount = {};
      continue;
    }

    // 将当前字符加入窗口,并更新其计数
    charCount[currentChar] = (charCount[currentChar] || 0) + 1;

    // 如果当前字符在窗口内的出现次数超过 2,则收缩窗口
    while (charCount[currentChar] > 2) {
      const leftChar = s.charCodeAt(left); // 获取左边界的字符
      charCount[leftChar]--; // 减少左边界字符的计数
      left++; // 移动左边界
    }

    // 更新最长子字符串长度
    maxLength = Math.max(maxLength, right - left + 1);
  }

  return maxLength;
}

 class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">

注意:

如果发现代码有用例覆盖不到的情况,欢迎反馈!会在第一时间修正,更新。
解题不易,如对您有帮助,欢迎点赞/收藏

注:本文转载自blog.csdn.net的CodeClimb的文章"https://blog.csdn.net/CodeClimb/article/details/145058195"。版权归原作者所有,此博客不拥有其著作权,亦不承担相应法律责任。如有侵权,请联系我们删除。
复制链接

评论记录:

未查询到任何数据!