-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathShuffleString.java
53 lines (49 loc) · 1.02 KB
/
ShuffleString.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
public class ShuffleString
{
public static void main(String[] args)
{
String x = "codeleet";
// String x = "abc";
int[] array = {4,5,6,7,0,2,1,3};
// int[] array = {1,2,3};
System.out.println(converter(x, array));
System.out.println(usingCyclicSort(x, array));
}
static String converter(String s, int[] indices)
{
char[] storingS = s.toCharArray();
for (int i = 0; i < indices.length; i++)
{
storingS[indices[i]] = s.charAt(i);
}
return String.valueOf(storingS);
}
static String usingCyclicSort(String s, int[] indices)
{
int i = 0;
char[] storing = s.toCharArray();
while (i<indices.length)
{
int correct = indices[i];
if (i!=correct)
{
swapChar(storing, i, correct);
swapInt(indices, i, correct);
}
else{i++;}
}
return String.valueOf(storing);
}
static void swapInt(int[] array,int i,int j)
{
int temp = array[i];
array[i]=array[j];
array[j]=temp;
}
static void swapChar(char[] array,int i,int j)
{
char temp = array[i];
array[i]=array[j];
array[j]=temp;
}
}