java hashMap 查询效率非常高,看一下根据key找value,根据value找key

@Test
public void testMap(){

Map  map=new HashMap();
//step1 加密字符键 字母
char c='a';
for(int i=2;i<=9;i++){
int k=(i==7|| i==9)?4:3;
for(int j=1;j<=k;j++){
String value=""+i+j;
map.put(c, value);
c++;
}
}
//step2  加密字符  空格 逗号 句号
map.put(' ', "11");
map.put(',', "12");
map.put('.', "13");

//step3 从0开始循环放入数字
for(c='0';c<='9';c++){
String value=c+"0";
map.put(c, value);
}
System.out.println(map);
String msg="no zuo no die.";

StringBuilder sb=new StringBuilder(msg.length()*2);


for(int i=0;iString value=map.get(msg.charAt(i));
if(value!=null){
   sb.append(value);
}else{
System.out.println("包含不能识别的字符");
break;
}
}
if(sb.length()==msg.length()*2){
System.out.println("原文"+msg);
System.out.println("密文"+sb.toString());
}

//解密:
String cypt=sb.toString();
              StringBuilder  sb2=new StringBuilder();
Set> entrySet=map.entrySet();
for(int i=0;i
String sub=cypt.substring(i,i+2);
System.out.println(sub);
for(Entry entry:entrySet){
//当前子字符串和entry中的value比较
if(sub.equals(entry.getValue())){
sb2.append(entry.getKey());
break;//一旦找到匹配的key就不在寻找。
}
}
}

if(sb2.length()==cypt.length()/2){
System.out.println("解密成功"+sb2.toString());
}else{
System.out.println("解密失败");
}

 
}

你可能感兴趣的:(java)