forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_345.java
55 lines (49 loc) · 1.27 KB
/
_345.java
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
package com.fishercoder.solutions;
import java.util.HashSet;
import java.util.Set;
/**Write a function that takes a string as input and reverse only the vowels of a string.
Example 1:
Given s = "hello", return "holle".
Example 2:
Given s = "leetcode", return "leotcede".
Note:
The vowels does not include the letter "y".*/
public class _345 {
public String reverseVowels(String s) {
StringBuilder sb = new StringBuilder(s);
Set<Character> vowels = new HashSet();
vowels.add('a');
vowels.add('e');
vowels.add('i');
vowels.add('o');
vowels.add('u');
vowels.add('A');
vowels.add('E');
vowels.add('I');
vowels.add('O');
vowels.add('U');
//use two pointers approach would be the fastest
int i = 0, j = s.length()-1;
while (i < j){
char left = s.charAt(i), right = s.charAt(j);
while(i < j && !vowels.contains(left)){
i++;
left = s.charAt(i);
}
while(i < j && !vowels.contains(right)){
j--;
right = s.charAt(j);
}
char temp = left;
sb.setCharAt(i, right);
sb.setCharAt(j, temp);
i++; j--;
}
return sb.toString();
}
public static void main(String...strings){
_345 test = new _345();
String s = "leetcode";
System.out.println(test.reverseVowels(s));
}
}