LeetCode 767.重构字符串
程序员文章站
2024-03-16 17:01:58
...
题目描述
给定一个字符串S,检查是否能重新排布其中的字母,使得两相邻的字符不同。
若可行,输出任意可行的结果。若不可行,返回空字符串。
示例 1:
输入: S = "aab"
输出: "aba"
示例 2:
输入: S = "aaab"
输出: ""
注意:
S 只包含小写字母并且长度在[1, 500]区间内。
题目解法1
class Solution {
public String reorganizeString(String S) {
// 变换成数组
char[] charArr = S.toCharArray();
// 记录各字母出现的次数
int[] charCount = new int[26];
int l = charArr.length;
// 记录最大次数,最大次数字母的下标
int max = 0, index = 0, s = (l + 1) >> 1;
for (int i = 0; i < l; i++) {
char c = charArr[i];
charCount[c - 'a']++;
if (charCount[c - 'a'] > max) {
max = charCount[c - 'a'];
index = c - 'a';
}
if (max > s) return "";
}
// 返回的解
char [] res = new char[l];
// 先将最多的字符填在偶数下标
int n = 0;
while (charCount[index]-- > 0) {
res[n] = (char) ('a' + index);
n += 2;
}
// 再填其它字符
for (int i = 0; i < charCount.length; i++) {
while (charCount[i]-- > 0) {
// 先填充最后一位
if (n >= res.length) n = 1;
res[n] = (char) ('a' + i);
n += 2;
}
}
return new String(res);
}
}
推荐阅读
-
LeetCode 767.重构字符串
-
LeetCode 767.重构字符串
-
[leetCode]767. 重构字符串
-
leetcode 767. 重构字符串
-
leetcode——767.重构字符串
-
leetcode 767.重构字符串
-
每天一道LeetCode-----给定字符串s和字符数组words,在s中找到words出现的位置,words内部字符串顺序无要求
-
LeetCode 151. 翻转字符串里的单词
-
LeetCode[字符串] - #3 Longest Substring Without Repeating Characters 博客分类: LeetCode LeetCodeJavaAlgorithm题解String
-
Leetcode 443: 压缩字符串