【算法与数据结构】763、LeetCode划分字母区间

文章目录

所有的LeetCode题解索引,可以看这篇文章------【算法和数据结构】LeetCode题解

一、题目

二、解法

思路分析:本题要求为:

  • 1.尽可能多的划分片段
  • 2.字母只能出现在一个片段中
  • 3.片段连接起来仍然是s(只做切割,不改变字母位置)

程序当中我们需要统计字母最后出现的位置,然后找到字符出现的最远边界,当i=最远边界时(从上图可以看出最远边界就是分割点),则找到了分割点。

程序如下:

cpp 复制代码
class Solution {
public:
	vector<int> partitionLabels(string s) {
		// 1.尽可能多的划分片段 2.字母只能出现在一个片段中 3.片段连接起来仍然是s(只做切割,不改变字母位置)
		vector<int> result;
		int left = 0;			// 片段的左边界
		int right = 0;			// 片段的右边界
		int hash[27] = { 0 };	// 构建字母哈希表
		for (int i = 0; i < s.size(); i++) {
			hash[s[i] - 'a'] = i;	// 统计字母最后出现的位置
		}		
		for (int i = 0; i < s.size(); i++) {
			right = max(right, hash[s[i] - 'a']); // 找到字符出现的最远边界
			if (i == right) {	// 如果i=最远边界,则找到分割点
				result.push_back(right - left + 1);
				left = i + 1;
			}
		}
		return result;
	}
};

复杂度分析:

  • 时间复杂度: O ( n ) O(n) O(n)。
  • 空间复杂度: O ( 1 ) O(1) O(1)。

三、完整代码

cpp 复制代码
# include <iostream>
# include <vector>
# include <algorithm>
# include <string>
using namespace std;

class Solution {
public:
	vector<int> partitionLabels(string s) {
		// 1.尽可能多的划分片段 2.字母只能出现在一个片段中 3.片段连接起来仍然是s(只做切割,不改变字母位置)
		vector<int> result;
		int left = 0;			// 片段的左边界
		int right = 0;			// 片段的右边界
		int hash[27] = { 0 };	// 构建字母哈希表
		for (int i = 0; i < s.size(); i++) {
			hash[s[i] - 'a'] = i;	// 统计字母最后出现的位置
		}		
		for (int i = 0; i < s.size(); i++) {
			right = max(right, hash[s[i] - 'a']); // 找到字符出现的最远边界
			if (i == right) {	// 如果i=最远边界,则找到分割点
				result.push_back(right - left + 1);
				left = i + 1;
			}
		}
		return result;
	}
};

int main() {
	string s = "ababcbacadefegdehijhklij";
	Solution s1;
	vector<int> result = s1.partitionLabels(s);
	for (vector<int>::iterator it = result.begin(); it < result.end(); it++) {
		cout << *it << ' ';
	}
	cout << endl;
	system("pause");
	return 0;
}

end

相关推荐
ZTLJQ9 分钟前
基于机器学习的三国时期诸葛亮北伐失败因素量化分析
人工智能·算法·机器学习
JohnFF31 分钟前
48. 旋转图像
数据结构·算法·leetcode
bbc12122631 分钟前
AT_abc306_b [ABC306B] Base 2
算法
生锈的键盘40 分钟前
推荐算法实践:movielens数据集
算法
董董灿是个攻城狮40 分钟前
Transformer 通关秘籍9:词向量的数值实际上是特征
算法
林泽毅1 小时前
SwanLab x EasyR1:多模态LLM强化学习后训练组合拳,让模型进化更高效
算法·llm·强化学习
小林熬夜学编程1 小时前
【高并发内存池】第八弹---脱离new的定长内存池与多线程malloc测试
c语言·开发语言·数据结构·c++·算法·哈希算法
刚入门的大一新生1 小时前
归并排序延伸-非递归版本
算法·排序算法
独好紫罗兰1 小时前
洛谷题单3-P1980 [NOIP 2013 普及组] 计数问题-python-流程图重构
开发语言·python·算法
独好紫罗兰1 小时前
洛谷题单3-P1009 [NOIP 1998 普及组] 阶乘之和-python-流程图重构
开发语言·python·算法