
java
半肉哥
资料不完整
展开
-
JDK下载
欢迎使用Markdown编辑器写博客本Markdown编辑器使用StackEdit修改而来,用它写博客,将会带来全新的体验哦:Markdown和扩展Markdown简洁的语法代码块高亮图片链接和图片上传LaTex数学公式UML序列图和流程图离线写博客导入导出Markdown文件丰富的快捷键快捷键加粗 Ctrl + B 斜体 Ctrl + I 引用 Ctrl原创 2017-09-17 20:43:51 · 388 阅读 · 0 评论 -
随机生成int数组Demo//ArrayTools
Demo1/** * @param length * @param start * inclusive. * @param end * exclusive. * @return * @throws NumberWrongException */ public s...原创 2018-11-23 11:17:39 · 289 阅读 · 0 评论 -
java-快速排序Demo
public class QuickSort { public static void main(String[] args) throws NumberWrongException { int[] numbers = ArrayTools.getRandomInts2(7, -9, 9); ArrayTools.printInts(numbers); ...原创 2018-11-29 00:37:02 · 288 阅读 · 1 评论 -
冒泡/选择排序Demo
冒泡排序 public static void main(String[] args) throws Exception { int[] numbers = ArrayTools.getRandomInts2(7, -9, 9); ArrayTools.printInts(numbers); bubbleSort(numbers); ...原创 2018-11-27 21:19:31 · 136 阅读 · 0 评论 -
插入排序Demo
public class InsertSort { public static void main(String[] args) throws NumberWrongException { int[] numbers = ArrayTools.getRandomInts(7, -9, 9); ArrayTools.printInts(numbers); ...原创 2018-11-30 20:44:23 · 133 阅读 · 0 评论 -
希尔排序#demo
public class ShellSort { public static void main(String[] args) throws Exception { int[] numbers = ArrayTools.getRandomInts(9, -5, 5, true); ArrayTools.printInts(numbers); ...原创 2018-12-10 15:41:21 · 131 阅读 · 0 评论