-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution345.h
60 lines (49 loc) · 1.33 KB
/
Solution345.h
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
//
// Author: huanglijun
// Date : 2019/7/24
// Desc : 345. Reverse Vowels of a String
//
/*
* Write a function that takes a string as input and reverse only the vowels of a string.
Example 1:
Input: "hello"
Output: "holle"
Example 2:
Input: "leetcode"
Output: "leotcede"
Note:
The vowels does not include the letter "y".
*/
#ifndef TESTCODE_SOLUTION345_H
#define TESTCODE_SOLUTION345_H
string reverseVowels(string s) {
int slen = (int)s.size();
if(slen <= 1) return s;
int sPos = 0;
int ePos = slen-1;
while(sPos < ePos){
bool bs = false;
bool be = false;
if(s[sPos] == 'a' || s[sPos] == 'e' || s[sPos] == 'i' || s[sPos] == 'o' || s[sPos] == 'u' ||
s[sPos] == 'A' || s[sPos] == 'E' || s[sPos] == 'I' || s[sPos] == 'O' || s[sPos] == 'U'){
bs = true;
} else {
sPos++;
}
if(s[ePos] == 'a' || s[ePos] == 'e' || s[ePos] == 'i' || s[ePos] == 'o' || s[ePos] == 'u' ||
s[ePos] == 'A' || s[ePos] == 'E' || s[ePos] == 'I' || s[ePos] == 'O' || s[ePos] == 'U'){
be = true;
} else {
ePos--;
}
if(be && bs){
char tmp = s[sPos];
s[sPos] = s[ePos];
s[ePos] = tmp;
sPos++;
ePos--;
}
}
return s;
}
#endif //TESTCODE_SOLUTION345_H