随笔分类 - 算法与数据结构
摘要:/** * @Description 颠倒数组排列顺序 * @author SEELE * @date 2017年8月17日 上午10:56:17 * @action sortArr */ public static void sortArr() { int[] b = new int[6]; in...
阅读全文
摘要:串的定义: 串(string)是由零个或多个字符组成的有限序列,又名叫字符串。 一般记为 s = "a1a2.....an"(n>=0),其中s是串的名称,串中的字符数目n为串的长度(是个有限的数值)。零个字符的串称为空串(null string),它的长度是零。所谓的序列,说明串的相邻字符之间具有
阅读全文
摘要:1 /** 2 * @Description 快速排序法,时间复杂度O{nlgn} 3 * @date 2017年2月21日 下午6:34:49 4 */ 5 @Test 6 public void kuaisu() { 7 int[] arr = getData(); 8 quicksort(0, arr.length - 1, ...
阅读全文