摘要: 冒泡排序 / 冒泡排序 @author yangzi / public class Sort { public static void maoPao(int[] arr){ int ib = 0; for(int i = 1; i arr[j+1]){ ib = arr[j]; arr[j] = a 阅读全文
posted @ 2017-08-07 19:50 杨子sjz 阅读(171) 评论(0) 推荐(0) 编辑
摘要: 二分法查找 / 二分法查找 找不到返回 1 @author yangzi / public class TwoFind { public static int twoFind(int ia, int[] arr, int left, int right) { if (left right) { re 阅读全文
posted @ 2017-08-07 19:36 杨子sjz 阅读(280) 评论(2) 推荐(0) 编辑
摘要: 软件开发中,各个开发阶段不是顺序执行的,而各个阶段都进行迭代并行执行的,然后在进入下一个阶段的开发。 这样对于开发中的需求变化,及人员变动都能得到更好的适应。 软件开发过程汇总迭代模型如下图所示: 阅读全文
posted @ 2017-08-07 15:10 杨子sjz 阅读(1383) 评论(0) 推荐(0) 编辑