-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTelephone.java
More file actions
76 lines (60 loc) · 1.85 KB
/
Telephone.java
File metadata and controls
76 lines (60 loc) · 1.85 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import java.util.ArrayList;
import java.util.List;
public class Telephone {
//Used to generate candidates
private char[][] dict = {{'0'},
{'1'},
{'a','b','c'},
{'d','e','f'},
{'g','h','i'},
{'j','k','l'},
{'m','n','o'},
{'p','q','r','s'},
{'t','u','v','w'},
{'w','x','y','z'}
};
public Telephone() {
}
//Perform backtracking with input
private void recPermute(String input,String result,List<String> output) {
if(input.length() == 0) {
output.add(result);
// System.out.println("" + result);
}else {
int currentChar = input.charAt(0) - '0' ;
// System.out.println(currentChar);
// //remainderString acts as input for the next recPermute
String remainderString = input.substring(1); //leave 1st charcter extract other
//dict[currentChar].length = number of candidates
//Character.toString(dict[currentChar][i]) = candidate
for(int i=0;i<dict[currentChar].length;i++) {
if(i==0) {
result += (Character.toString(dict[currentChar][i]));
}else {
//Remove the last character
//TO avoid condition to append strings at last
//Use (length - 1) : to empty position for next candidate
String temp = result.substring(0,result.length()-1);
temp += (Character.toString(dict[currentChar][i]));
result = temp;
}
// result += (Character.toString(dict[currentChar][i]));
recPermute(remainderString,result,output);
}
}
}
public static void main(String args[]) {
Telephone tel = new Telephone();
for (int i=0;i<9;i++) {
// System.out.println(""+tel.dict[i].length);
}
String c = "abc".substring(2,3);
// System.out.println(""+c);
List<String> strList = new ArrayList<String>();
tel.recPermute("415520","" ,strList);
// System.out.println("size :"+strList.size());
for(String str:strList) {
System.out.print(str + "\t");
}
}
}