-
Notifications
You must be signed in to change notification settings - Fork 160
/
Copy pathLongestSubstringbeginend2uniquechars.cpp
73 lines (48 loc) · 1.53 KB
/
LongestSubstringbeginend2uniquechars.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*
Find the longest substring which begins and ends with unique characters.
*/
/*
solution: use two pointers as sliding window of the substring. The end pointer record the number of chars in the map,
the begin pointer decrease the count of a char in map until the count reaches 1. Update the maximal substring length and start position
if necessary. At last, return the substring from start with maximial length.
O(n) time, O(n) space
*/
#include<iostream>
#include<string>
#include<unordered_map>
using namespace std;
string Longestsubstringtwounique(const string str) {
int len = str.size();
int i = 0, j = 0;
int maxstart = 0, maxlength = 0;
unordered_map<char, int> mp;
while (j < len) {
if (mp.find(str[j]) == mp.end()) {
mp[str[j]] = 1;
} else {
mp[str[j]]++;
}
char tmp = str[i];
while (i <j && mp[tmp] > 1) {
--mp[tmp];
tmp = str[++i];
}
if (i < j && mp[tmp] == 1 && mp[str[j]] == 1 && j - i >= maxlength) {
maxstart = i;
maxlength = j - i + 1;
}
++j;
}
return str.substr(maxstart, maxlength);
}
int main() {
const string str1 = "a";
const string str2 = "abc";
const string str3 = "abbc";
const string str4 = "bcccccaaacc";
cout<<Longestsubstringtwounique(str1)<<endl;
cout<<Longestsubstringtwounique(str2)<<endl;
cout<<Longestsubstringtwounique(str3)<<endl;
cout<<Longestsubstringtwounique(str4)<<endl;
return 0;
}