2017年3月11日
摘要: class BinaryFind{ public void find(int arr[],int left,int right,int a){ if(left<=right){ int midIndex=(left+right)/2; if(a==arr[midIndex]){ System.out 阅读全文
posted @ 2017-03-11 14:04 paulversion 阅读(99) 评论(0) 推荐(0) 编辑
摘要: class QuickSort{ // 交换元素位置 public void swap(int array[], int i , int k) { int temp = array[i]; array[i] = array[k]; array[k] = temp; } public int part 阅读全文
posted @ 2017-03-11 13:15 paulversion 阅读(83) 评论(0) 推荐(0) 编辑