演算法知識梳理(8) 二分查詢演算法及其變型

澤毛發表於2017-12-21

一、概要

本文介紹了有關二分查詢的演算法的Java程式碼實現,所有程式碼均可通過 線上編譯器 直接執行,演算法目錄:

  • 普通二分查詢
  • 查詢關鍵字第一次出現的位置
  • 查詢關鍵字最後一次出現的位置
  • 查詢小於關鍵字的最大數字出現的位置
  • 查詢大於關鍵字的最小數字出現的位置

對於二分查詢,有以下幾個需要注意的點:

  • pStartpEnd修改的條件進行合併.
  • 如果出現了pEnd=pMid的情況要將while條件修改為pStart<pEnd
  • 如果出現了pStart=pMid的情況要將while條件修改為pStart<pEnd-1
  • 對於pStart<pEnd的結束條件,最後一次進入迴圈的陣列長度為2,結束時陣列長度為1
  • 對於pStart<pEnd-1的結束條件,最後一次進入迴圈的陣列長度為3,結束時陣列長度為12

二、程式碼實現

2.1 普通二分查詢

實現程式碼

class Untitled {
	
	static int binNormalSearch(int p[], int len, int key) {
		int start = 0;
		int end = len-1;
		while (start <= end) {
			int mid = (start+end) >> 1;
			if (p[mid] > key) {
				end = mid-1;
			} else if (p[mid] < key) {
				start = mid+1;
			} else {
				return mid;
			}
		}
		return -1;
	}
	
	public static void main(String[] args) {
		int p[] = {1, 5, 6, 7, 11, 11, 56};
		System.out.println("index=" + binNormalSearch(p, p.length, 11));
	}
}
複製程式碼

2.2 查詢關鍵字第一次出現的位置

實現程式碼

class Untitled {

	static int binFirstKSearch(int p[], int len, int key) {
		int start = 0;
		int end = len-1;
		while (start < end) {
			int mid = (start+end) >> 1;
			if (p[mid] > key) {
				end = mid-1;
			} else if (p[mid] < key) {
				start = mid+1;
			} else {
				end = mid;
			}
		}
		if (p[start] == key) {
			return start;
		}
		return -1;
	}

	public static void main(String[] args) {
		int p[] = {1, 5, 6, 7, 11, 11, 11, 11, 56};
		System.out.println("index=" + binFirstKSearch(p, p.length, 11));
	}
}
複製程式碼

2.3 查詢關鍵字最後一次出現的位置

實現程式碼

class Untitled {

	static int binLastKSearch(int p[], int len, int key) {
		int start = 0;
		int end = len-1;
		while (start < end-1) {
			int mid = (start+end) >> 1;
			if (p[mid] > key) {
				end = mid-1;
			} else if (p[mid] < key) {
				start = mid+1;
			} else {
				start = mid;
			}
		}
		if (p[end] == key) {
			return end;
		}
		if (p[start] == key) {
			return start;
		}
		return -1;
	}

	public static void main(String[] args) {
		int p[] = {1, 5, 6, 7, 11, 11, 11, 11, 56};
		System.out.println("index=" + binLastKSearch(p, p.length, 11));
	}
}
複製程式碼

2.4 查詢小於關鍵字的最大數字出現的位置

程式碼實現

class Untitled {

	static int binMaxLessKSearch(int p[], int len, int key) {
		int start = 0;
		int end = len-1;
		while (start < end-1) {
			int mid = (start+end) >> 1;
			if (p[mid] > key) {
				end = mid-1;
			} else if (p[mid] < key) {
				start = mid;
			} else {
				end = mid-1;
			}
		}
		if (p[end] < key) {
			return end;
		}
		if (p[start] < key) {
			return start;
		}
		return -1;
	}

	public static void main(String[] args) {
		int p[] = {1, 5, 6, 7, 11, 11, 11, 11, 56};
		System.out.println("index=" + binMaxLessKSearch(p, p.length, 11));
	}
}
複製程式碼

2.5 查詢大於關鍵字的最小數字出現的位置

程式碼實現

class Untitled {

	static int binMinMoreKSearch(int p[], int len, int key) {
		int start = 0;
		int end = len-1;
		while (start < end) {
			int mid = (start+end) >> 1;
			if (p[mid] > key) {
				end = mid;
			} else if (p[mid] < key) {
				start = mid+1;
			} else {
				start = mid+1;
			}
		}
		if (p[start] > key) {
			return start;
		}
		return -1;
	}

	public static void main(String[] args) {
		int p[] = {1, 5, 6, 7, 11, 11, 11, 11, 56};
		System.out.println("index=" + binMinMoreKSearch(p, p.length, 11));
	}
}
複製程式碼

更多文章,歡迎訪問我的 Android 知識梳理系列:

相關文章