导航

2015年12月13日

摘要: public class TestB { public static void permutation(String str,Set set){ if(str==null) return; int len=str.length(); if(len==0 || len==1)return; ... 阅读全文

posted @ 2015-12-13 22:40 骄阳照林 阅读(223) 评论(0) 推荐(0) 编辑

摘要: public class TestB { public static void permutation(String str,Set set){ if(str==null) return; int len=str.length(); if(len==0 || len==1)return; ... 阅读全文

posted @ 2015-12-13 22:40 骄阳照林 阅读(203) 评论(0) 推荐(0) 编辑

摘要: Java代码:class A{ int x; int y; A(int x,int y){ this.x=x; this.y=y; } public int hashCode() { int result = 17; result = 37 * result +... 阅读全文

posted @ 2015-12-13 21:02 骄阳照林 阅读(147) 评论(0) 推荐(0) 编辑