-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy path_3.cpp
61 lines (52 loc) · 1.55 KB
/
_3.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
//Solution 1: Using Array Frequency Method
class Solution {
public:
int lengthOfLongestSubstring(string s) {
if(s.find_first_not_of(' ') != string::npos){
// There's a non-space && visit array ~ 127 ascii chars.
int visit[150];
memset(visit,0,sizeof(visit));
int mx=0,x=0;
for(int i=0;i<s.size();i++){
if(visit[s[i]]==0){
visit[s[i]]++;
x++;
}else{
mx = max(mx,x);
//back to (i-x) index for relooping from the double occurance
if(x>0) i-=x;
x=0;
memset(visit,0,sizeof(visit));
}
}
mx = max(x,mx);
return mx;
}else{
// There's a only white-spaces.
if(s.size()>0) return 1;
else return 0;
}
}
};
//Solutio 2: Using Map Method (High Memory and Time)
class Solution {
public:
int lengthOfLongestSubstring(string s) {
unordered_map <char,int> ump;
int mx=0,x=0;
for(int i=0;i<s.size();i++){
if(ump[s[i]]==0){
ump[s[i]]++;
x++;
}else{
mx = max(mx,x);
//back to (i-x) index for relooping from the double occurance
if(x>0) i-=x;
x=0;
ump.clear();
}
}
mx = max(x,mx);
return mx;
}
};