原创 Binary Search bug list

二分查找中的邊界問題: 411 int binarySearch(int *a, int length, int key) 412 { 413     int start, end, mid; 414     start = 0; end