摘要: /** * 求数组中两两相加是20的组合数 * @param array * @param sum */ public static void getMethod_3(int[] array,int sum){ int count = 0; for(int i=0;i<array.length;i++){ ... 阅读全文
posted @ 2016-09-24 16:25 邻家小书童 阅读(1266) 评论(0) 推荐(0) 编辑
摘要: /**数组中元素重复最多的数 * @param array * @author shaobn * @param array */ public static void getMethod_4(int[] array){ Map map = new HashMap(); int count = 0; i... 阅读全文
posted @ 2016-09-24 16:09 邻家小书童 阅读(20391) 评论(0) 推荐(0) 编辑
摘要: package com.shb.java; public class Demo4 { /**时间有限 先不写文字了 自己随便敲的 * @param args * @author shaobn */ public static void main(String[] args) { // TODO Auto-generated method stub // System.o... 阅读全文
posted @ 2016-09-24 08:33 邻家小书童 阅读(236) 评论(0) 推荐(0) 编辑