-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathReverseStringII541.java
More file actions
47 lines (40 loc) · 1.29 KB
/
ReverseStringII541.java
File metadata and controls
47 lines (40 loc) · 1.29 KB
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
/**
* Given a string and an integer k, you need to reverse the first k characters
* for every 2k characters counting from the start of the string. If there are
* less than k characters left, reverse all of them. If there are less than 2k
* but greater than or equal to k characters, then reverse the first k
* characters and left the other as original.
*
* Example:
* Input: s = "abcdefg", k = 2
* Output: "bacdfeg"
*
* Restrictions:
* The string consists of lower English letters only.
* Length of the given string and k will in the range [1, 10000]
*
*/
public class ReverseStringII541 {
public String reverseStr(String s, int k) {
if (s == null || s.length() == 0) return s;
char[] chars = s.toCharArray();
for (int i=0; i<=s.length()/k; i++) {
if (i % 2 == 0) {
reverse(chars, i * k, Math.min((i+1)*k - 1, s.length()-1));
}
}
return new String(chars);
}
private void reverse(char[] chars, int left, int right) {
int i = 0;
while (i < (right-left+1)/2) {
swap(chars, left+i, right-i);
i++;
}
}
private void swap(char[] chars, int i, int j) {
char temp = chars[i];
chars[i] = chars[j];
chars[j] = temp;
}
}