long time = System.currentTimeMillis();
for (int i = 10; i > 0 ; i--)
test1(size);
time = System.currentTimeMillis() - time;
System.out.println(size + " size, time: " + time);
HashMap h = new HashMap(size);
for (int i = Dict.DICT.length-1; i >=0 ; i--)
h.put(Dict.DICT[i], Boolean.TRUE);
Object o;
for (int i = Dict.DICT.length-1; i >=0 ; i--)
o = h.get(Dict.DICT[i]);