力扣763. 划分字母区间

Problem: 763. 划分字母区间

文章目录

题目描述

思路

1.创建一个名为 last 的数组,用于存储每个字母在字符串 s 中最后出现的位置。然后,获取字符串 s 的长度 len。

2.计算每个字母的最后位置:遍历字符串 s,对于每个字符 s.charAt(i),计算其在字母表中的位置(s.charAt(i) - 'a'),并将其最后出现的位置 i 存储在 last 数组中。

3.初始化分割的起始和结束位置:创建一个名为 pos 的列表,用于存储每个部分的长度。然后,初始化 start 和 end 为0,它们分别表示当前部分的起始和结束位置。

4.计算每个部分的长度:遍历字符串 s,对于每个字符 s.charAt(i),更新 end 为 end 和 last[s.charAt(i) - 'a'] 中的最大值。然后,将 start 设置为 end + 1。

复杂度

时间复杂度:

O ( n ) O(n) O(n);其中 n n n为字符串s的长度;

空间复杂度:

O ( 1 ) O(1) O(1)

Code

java 复制代码
class Solution {
    /**
     * Partition Labels
     *
     * @param s Given string
     * @return List<Integer>
     */
    public List<Integer> partitionLabels(String s) {
        int[] last = new int[26];
        int len = s.length();
        for (int i = 0; i < len; ++i) {
            last[s.charAt(i) - 'a'] = i;
        }
        List<Integer> pos = new ArrayList<>();
        int start = 0;
        int end = 0;
        for (int i = 0; i < len; ++i) {
            end = Math.max(end, last[s.charAt(i) - 'a']);
            if (i == end) {
                pos.add(end - start + 1);
                start = end + 1;
            }
        }
        return pos;
    }
}
相关推荐
电子_咸鱼2 小时前
LeetCode——Hot 100【电话号码的字母组合】
数据结构·算法·leetcode·链表·职场和发展·贪心算法·深度优先
仰泳的熊猫2 小时前
LeetCode:785. 判断二分图
数据结构·c++·算法·leetcode
rit84324992 小时前
基于MATLAB实现基于距离的离群点检测算法
人工智能·算法·matlab
my rainy days4 小时前
C++:友元
开发语言·c++·算法
haoly19894 小时前
数据结构和算法篇-归并排序的两个视角-迭代和递归
数据结构·算法·归并排序
微笑尅乐4 小时前
中点为根——力扣108.讲有序数组转换为二叉搜索树
算法·leetcode·职场和发展
im_AMBER5 小时前
算法笔记 05
笔记·算法·哈希算法
夏鹏今天学习了吗5 小时前
【LeetCode热题100(46/100)】从前序与中序遍历序列构造二叉树
算法·leetcode·职场和发展
吃着火锅x唱着歌5 小时前
LeetCode 2389.和有限的最长子序列
算法·leetcode·职场和发展
嶔某6 小时前
二叉树的前中后序遍历(迭代)
算法