字符串 S 由小写字母组成。我们要把这个字符串划分为尽可能多的片段,同一个字母只会出现在其中的一个片段。返回一个表示每个字符串片段的长度的列表。
示例 1:
输入: S = "ababcbacadefegdehijhklij"
输出: [9,7,8]
解释:
划分结果为 "ababcbaca", "defegde", "hijhklij"。
每个字母最多出现在一个片段中。
像 "ababcbacadefegde", "hijhklij" 的划分是错误的,因为划分的片段数较少。
注意:
S的长度在[1, 500]之间。
S只包含小写字母'a'到'z'。
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/partition-labels
贪心算法,其实也就是我们自己算差不多,先从第一个开始查找到最后一次出现改元素的位置,进行一个标记,再从这个区间进行范围的扩展,也就是将所有的元素遍历一遍。
class Solution {
public List<Integer> partitionLabels(String S) {
int[] last = new int[26];
for (int i = 0; i < S.length(); i++) {
last[S.charAt(i) - 'a'] = i;
}
int begin = 0;
int tempMaxIndex = 0;
List<Integer> list = new ArrayList<>();
for (int j = 0; j < S.length(); j++) {
tempMaxIndex = Math.max(tempMaxIndex, last[S.charAt(j) - 'a']); //判断是否需要扩宽
if (j == tempMaxIndex) {
list.add(j - begin + 1);
begin = j + 1;
}
}
return list;
}
}