递归删除所有相邻重复项的 C++ 程序
给定一个字符串,递归地从字符串中删除相邻的重复字符。输出字符串不应有任何相邻的重复项。请参阅以下示例。
例子:
Input: azxxzy
Output: ay
First “azxxzy” is reduced to “azzy”.
The string “azzy” contains duplicates,
so it is further reduced to “ay”.
Input: geeksforgeeg
Output: gksfor
First “geeksforgeeg” is reduced to
“gksforgg”. The string “gksforgg”
contains duplicates, so it is further
reduced to “gksfor”.
Input: caaabbbaacdddd
Output: Empty String
Input: acaaabbbacdddd
Output: acac
可以按照以下方法在O(N)时间内删除重复项:
- 从最左边的字符开始,如果有的话,删除左角的重复项。
- 第一个字符现在必须与其相邻字符不同。重复长度为 n-1 的字符串(没有第一个字符的字符串)。
- 令长度为 n-1 的右子串减少后得到的字符串为rem_str 。有三种可能的情况
- 如果rem_str的第一个字符与原始字符串的第一个字符匹配,则从rem_str中删除第一个字符。
- 如果剩余字符串为空并且最后删除的字符与原始字符串的第一个字符相同。返回空字符串。
- 否则,将原始字符串的第一个字符附加到rem_str的开头。
- 返回rem_str 。
下图是上述方法的试运行:
下面是上述方法的实现:
C++
// C/C++ program to remove all
// adjacent duplicates from a string
#include
#include
using namespace std;
// Recursively removes adjacent
// duplicates from str and returns
// new string. las_removed is a
// pointer to last_removed character
char* removeUtil(char *str,
char *last_removed)
{
// If length of string is 1 or 0
if (str[0] == '' || str[1] == '')
return str;
// Remove leftmost same characters
// and recur for remaining
// string
if (str[0] == str[1])
{
*last_removed = str[0];
while (str[1] && str[0] == str[1])
str++;
str++;
return removeUtil(str, last_removed);
}
// At this point, the first character
// is definiotely different
// from its adjacent. Ignore first
// character and recursively
// remove characters from remaining string
char* rem_str = removeUtil(str+1,
last_removed);
// Check if the first character
// of the rem_string matches with
// the first character of the
// original string
if (rem_str[0] && rem_str[0] == str[0])
{
*last_removed = str[0];
// Remove first character
return (rem_str+1);
}
// If remaining string becomes
// empty and last removed character
// is same as first character of
// original string. This is needed
// for a string like "acbbcddc"
if (rem_str[0] == '' &&
*last_removed == str[0])
return rem_str;
// If the two first characters
// of str and rem_str don't match,
// append first character of str
// before the first character of
// rem_str.
rem_str--;
rem_str[0] = str[0];
return rem_str;
}
// Function to remove
char *remove(char *str)
{
char last_removed = '';
return removeUtil(str, &last_removed);
}
// Driver program to test
// above functions
int main()
{
char str1[] = "geeksforgeeg";
cout << remove(str1) << endl;
char str2[] = "azxxxzy";
cout << remove(str2) << endl;
char str3[] = "caaabbbaac";
cout << remove(str3) << endl;
char str4[] = "gghhg";
cout << remove(str4) << endl;
char str5[] = "aaaacddddcappp";
cout << remove(str5) << endl;
char str6[] = "aaaaaaaaaa";
cout << remove(str6) << endl;
char str7[] = "qpaaaaadaaaaadprq";
cout << remove(str7) << endl;
char str8[] = "acaaabbbacdddd";
cout << remove(str8) << endl;
char str9[] = "acbbcddc";
cout << remove(str9) << endl;
return 0;
}
C++
// C++ Program for above approach
#include
using namespace std;
// Recursively removes adjacent
// duplicates from str and returns
// new string. las_removed is a
// pointer to last_removed character
string removeDuplicates(string s,
char ch)
{
// If length of string is 1 or 0
if (s.length() <= 1)
{
return s;
}
int i = 0;
while (i < s.length())
{
if (i + 1 < s.length() &&
s[i] == s[i + 1])
{
int j = i;
while (j + 1 < s.length() &&
s[j] == s[j + 1])
{
j++;
}
char lastChar = i > 0 ? s[i - 1] : ch;
string remStr = removeDuplicates(
s.substr(j + 1, s.length()), lastChar);
s = s.substr(0, i);
int k = s.length(), l = 0;
// Recursively remove all the adjacent
// characters formed by removing the
// adjacent characters
while (remStr.length() > 0 &&
s.length() > 0 &&
remStr[0] == s[s.length() - 1])
{
// Have to check whether this is the
// repeated character that matches the
// last char of the parent String
while (remStr.length() > 0 &&
remStr[0] != ch &&
remStr[0] == s[s.length() - 1])
{
remStr = remStr.substr(1,
remStr.length());
}
s = s.substr(0, s.length() - 1);
}
s = s + remStr;
i = j;
}
else
{
i++;
}
}
return s;
}
// Driver Code
int main()
{
string str1 = "mississipie";
cout << removeDuplicates(str1, ' ') <<
endl;
string str2 = "ocvvcolop";
cout << removeDuplicates(str2, ' ') <<
endl;
}
// This code is contributed by nirajgusain5
输出:
gksfor
ay
g
a
qrq
acac
a
时间复杂度:解决方案的时间复杂度可以写为 T(n) = T(nk) + O(k) 其中 n 是输入字符串的长度,k 是相同的第一个字符的数量。递归的解是 O(n)
感谢Prachi Bodke提出这个问题和初步解决方案。
另一种方法:
这里的想法是检查字符串 remStr 是否有与父字符串的最后一个字符匹配的重复字符。如果发生这种情况,那么我们必须在连接字符串s 和字符串remStr 之前继续删除该字符。
下面是上述方法的实现:
C++
// C++ Program for above approach
#include
using namespace std;
// Recursively removes adjacent
// duplicates from str and returns
// new string. las_removed is a
// pointer to last_removed character
string removeDuplicates(string s,
char ch)
{
// If length of string is 1 or 0
if (s.length() <= 1)
{
return s;
}
int i = 0;
while (i < s.length())
{
if (i + 1 < s.length() &&
s[i] == s[i + 1])
{
int j = i;
while (j + 1 < s.length() &&
s[j] == s[j + 1])
{
j++;
}
char lastChar = i > 0 ? s[i - 1] : ch;
string remStr = removeDuplicates(
s.substr(j + 1, s.length()), lastChar);
s = s.substr(0, i);
int k = s.length(), l = 0;
// Recursively remove all the adjacent
// characters formed by removing the
// adjacent characters
while (remStr.length() > 0 &&
s.length() > 0 &&
remStr[0] == s[s.length() - 1])
{
// Have to check whether this is the
// repeated character that matches the
// last char of the parent String
while (remStr.length() > 0 &&
remStr[0] != ch &&
remStr[0] == s[s.length() - 1])
{
remStr = remStr.substr(1,
remStr.length());
}
s = s.substr(0, s.length() - 1);
}
s = s + remStr;
i = j;
}
else
{
i++;
}
}
return s;
}
// Driver Code
int main()
{
string str1 = "mississipie";
cout << removeDuplicates(str1, ' ') <<
endl;
string str2 = "ocvvcolop";
cout << removeDuplicates(str2, ' ') <<
endl;
}
// This code is contributed by nirajgusain5
输出:
mpie
lop
时间复杂度: O(n)
有关详细信息,请参阅有关递归删除所有相邻重复项的完整文章!