Java-LeetCode763. 划分字母区间-滑动窗口

美团骑手包裹区间分组

http://www.nowcoder.com/questionTerminal/80fdfb1b65e149959fc1088bd3f9692e

  • 算法
    • 滑动窗口
    • 1.初始化区间左右范围start=0,end=0
    • 2.从第一个字符开始遍历,每次找到相同字符的lastIndex;如果比end大,更新end
    • 3.当遍历到end时,划分一个区间,同时更新区间的左范围start=end+1
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        String s = scanner.nextLine();
        System.out.println(partitionLabels(s).toString().replaceAll("[\\[|\\]]", "").replaceAll(", ", " "));
    }

    // 不限定字符范围
    public static List<Integer> partitionLabels(String S) {
        ArrayList<Integer> result = new ArrayList<>(10);
        int start = 0, end = 0;
        for (int i = 0; i < S.length(); i++) {
            end = Math.max(end, S.lastIndexOf(S.charAt(i)));
            if (i == end) {
                result.add(end - start + 1);
                start = end + 1;
            }
        }
        return result;
    }

    // 限定字符范围
    public static List<Integer> partitionLabels(String S) {
        ArrayList<Integer> result = new ArrayList<>(10);
        int[] map = new int[26];
        for (int i = 0; i < S.length(); i++) {
            map[S.charAt(i) - 'A'] = i;
        }
        int start = 0, end = 0;
        for (int i = 0; i < S.length(); i++) {
            end = Math.max(end, map[S.charAt(i)-'A']);
            if (i == end) {
                result.add(end - start + 1);
                start = end + 1;
            }
        }
        return result;
    }
全部评论

相关推荐

不愿透露姓名的神秘牛友
11-26 18:54
说等下个版本吧的发呆爱好者很贪睡:佬最后去了哪家呀
点赞 评论 收藏
分享
牛客5655:其他公司的面试(事)吗
点赞 评论 收藏
分享
牛舌:如果我不想去,不管对方给了多少,我一般都会说你们给得太低了。这样他们就会给下一个offer的人更高的薪资了。
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务