-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTelephone.java
More file actions
67 lines (53 loc) · 1.5 KB
/
Telephone.java
File metadata and controls
67 lines (53 loc) · 1.5 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
package com.ub.sol;
import java.util.ArrayList;
import java.util.List;
public class Telephone {
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() {
}
private void recPermute(String input,String result,List<String> output) {
// for(int i=0;i<input.length();i++) {
// output.add((dict[currentChar][i]));
// }
if(input.length() == 0) {
output.add(result);
// System.out.println("" + result);
}else {
int currentChar = input.charAt(0) - 48 ;
// System.out.println(currentChar);
// result += result;
String remainderString = input.substring(1);
for(int i=0;i<dict[currentChar].length;i++) {
if(i==0) {
result += (Character.toString(dict[currentChar][i]));
}else {
String temp = result.substring(0,result.length()-1);
temp += (Character.toString(dict[currentChar][i]));
result = temp;
}
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());
}
}