-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathReverseVowelsOfString.java
46 lines (41 loc) · 1.34 KB
/
ReverseVowelsOfString.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
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
public class ReverseVowelsOfString {
private static final Set<Character> VOWELS = new HashSet<>();
static {
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');
}
public static String reverseVowels(String string) {
List<Character> vowels = getVowels(string);
StringBuilder result = new StringBuilder();
for (int index = 0, j = vowels.size() - 1 ; index < string.length() ; index++) {
char character = string.charAt(index);
result.append((char) (isVowel(character) ? vowels.get(j--) : character));
}
return result.toString();
}
private static boolean isVowel(char character) {
return VOWELS.contains(character);
}
private static List<Character> getVowels(String string) {
List<Character> vowels = new ArrayList<>();
for (int index = 0 ; index < string.length() ; index++) {
char character = string.charAt(index);
if (isVowel(character)) {
vowels.add(character);
}
}
return vowels;
}
}