摘要: /** * 求数组中两两相加是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) 编辑
摘要: package com.shb.java; /** * 将数组中的0放到数组的后边,然后原来的非零数的顺序不改变 * @author BIN * */ public class Demo2{ public static void main(String[] args){ getArray(new int[]{1,0,0,5,0}); } public static int... 阅读全文
posted @ 2016-09-21 21:39 邻家小书童 阅读(1942) 评论(0) 推荐(0) 编辑
摘要: BP 神经网络中的 BP 为 Back Propagation 的简写,最早它是由Rumelhart、McCelland等科学家于 1986 年提出来的,Rumelhart 并在Nature 上发表了一篇非常著名的文章 《Learning representations by back-propag 阅读全文
posted @ 2016-05-11 09:54 邻家小书童 阅读(248) 评论(0) 推荐(0) 编辑
摘要: http://www.tuicool.com/articles/uiuA3e 阅读全文
posted @ 2016-04-14 08:01 邻家小书童 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 1 package shb.java.demo; 2 3 public class MyTest { 4 public static void main(String[] args) { 5 String string = "For God so loved the wo... 阅读全文
posted @ 2015-11-26 14:09 邻家小书童 阅读(498) 评论(2) 推荐(1) 编辑
摘要: package com.example.testsms;import android.app.Activity;import android.app.PendingIntent;import android.content.BroadcastReceiver;import android.conte... 阅读全文
posted @ 2015-09-28 09:41 邻家小书童 阅读(334) 评论(0) 推荐(0) 编辑
摘要: 1 public class Test3 { 2 3 /**@author shaobn 4 * @param 选择排序:将a.length - i个元素分别和第i个元素相比较,小的话就将值调换。依次递减进行排列 5 */ 6 public static vo... 阅读全文
posted @ 2015-09-24 13:50 邻家小书童 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 1 import java.util.Random; 2 3 /** 4 * 获取最大值最小值 5 * @author shaobn 6 * 7 */ 8 public class Test2 { 9 public static void main(String[] args) ... 阅读全文
posted @ 2015-09-24 10:50 邻家小书童 阅读(221) 评论(0) 推荐(0) 编辑