摘要: package com.cisco.www.test;/** * 快排 */public class QuickSort1 { public static void quickSort(int[] arr){ if(arr==null||arr.length<2){ return; } quickS 阅读全文
posted @ 2019-06-17 21:40 stone1234567890 阅读(469) 评论(0) 推荐(1) 编辑
摘要: package com.cisco.www.sort;public class NetherlandsFlag { public static int[] partition(int[] arr,int L, int R,int num){ /** * */ int less = L-1 ; int 阅读全文
posted @ 2019-06-17 06:56 stone1234567890 阅读(256) 评论(0) 推荐(0) 编辑