(int key)
| 14 | private static char[] chars = |
| 15 | "ABCDEFGHIJKLMNOPQRSTUVWXYZ".toCharArray(); |
| 16 | private static String value(int key) { |
| 17 | return |
| 18 | chars[key % chars.length] + |
| 19 | Integer.toString(key / chars.length); |
| 20 | } |
| 21 | public CountMap(int size) { |
| 22 | this.size = size < 0 ? 0 : size; |
| 23 | } |