-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path0345_reverse_vowels_of_a_string.cc
67 lines (60 loc) · 1.3 KB
/
0345_reverse_vowels_of_a_string.cc
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
/**
* Author: Lanqing Ye
* Date: 2019-10-15
*/
/*
Example 1:
Input: "hello"
Output: "holle"
Example 2:
Input: "leetcode"
Output: "leotcede"
*/
//fun one
class Solution {
public:
string reverseVowels(string s) {
set<char> a;
a.insert('a');
a.insert('e');
a.insert('i');
a.insert('o');
a.insert('u');
a.insert('A');
a.insert('E');
a.insert('I');
a.insert('O');
a.insert('U');
int i = 0 , j = s.size() - 1;
while(i < j){
while(a.find(s[i]) == a.end() && i < j){
i++;
}
while(a.find(s[j]) == a.end() && i < j){
j--;
}
swap(s[i],s[j]);
i++;
j--;
}
return s;
}
};
//fun two
class Solution {
public:
bool findAU(char tmp){
return tmp == 'a' || tmp == 'e' || tmp == 'i' || tmp == 'o' || tmp == 'u' || tmp == 'A' || tmp == 'E' || tmp == 'I' || tmp == 'O' || tmp == 'U';
}
string reverseVowels(string s) {
int i = 0 , j = s.size() - 1;
while(i < j){
while(!findAU(s[i]) && i < j)
i++;
while(!findAU(s[j]) && i < j)
j--;
swap(s[i++],s[j--]);
}
return s;
}
};