力扣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 和 lasts.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;
    }
}
相关推荐
TsingtaoAI5 小时前
3D高斯泼溅技术发展及其在具身智能领域的应用综述
人工智能·算法·ai·具身智能·高斯泼溅
atunet5 小时前
关于图算法中的连通分量检测与最小割问题7
算法
心运软件6 小时前
银行客户流失预测(Python 完整实战)
算法
邪神与厨二病6 小时前
牛客周赛 Round 153
python·算法
qizayaoshuap8 小时前
# ❌ 井字棋 — 鸿蒙ArkTS Minimax AI算法与博弈系统设计
人工智能·算法·华为·harmonyos
皓月斯语9 小时前
B3842 [GESP202306 三级] 春游 题解
数据结构·c++·算法·题解
atunet9 小时前
树状结构在查询优化中的作用与实现细节7
算法
徐凤年_9 小时前
rog_map参数理解
算法
春日见9 小时前
算法与数据结构----哈希表
数据结构·人工智能·算法·机器学习·自动驾驶·哈希算法·散列表
叩码以求索10 小时前
统计按位或能得到最大值的子集数目(一)
数据结构·算法