二分查詢:
二分查詢又稱折半查詢,它是一種效率較高的查詢方法
實現原理:
通俗點來講就是將要查詢部分對折,然後分為三部分:中間部分,中間前的部分,中間後的部分,將要查詢的和中間部分進行比較,如果小於中間部分則在中間部分的前面找,否則就在中間部分的後邊找,然後再重複上邊折半的過程
使用要求或者前提:
通過實現原理可以看出,要想使用二分查詢必須滿足一定條件或者前提,即查詢序列必須是順序結構和有序的
二分查詢的優缺點:
優點是比較次數少,查詢速度快,平均效能好
其缺點是要求待查表為有序表,且插入刪除困難
因此,折半查詢方法適用於不經常變動而查詢頻繁的有序列表
**實現:
1.非遞迴實現
public static int test1(int arr,int value)
while (low<=high)
if(arr[mid]2.遞迴實現
public static int test(int arr,int value,int low,int high)
int mid=(low+high)/2;
if(arr[mid]>value)
if(arr[mid]3.測試
public static void main(string args) ;
system.out.println(test(a,34,0,8));
system.out.println(test1(a,1));
}
二分查詢 Java版
演算法思想 又叫折半查詢,要求待查詢的序列有序。每次取中間位置的值與待查關鍵字比較,如果中間位置的值比待查關鍵字大,則在前半部分迴圈這個查詢的過程,如果中間位置的值比待查關鍵字小,則在後半部分迴圈這個查詢的過程。直到查詢到了為止,否則序列中沒有待查的關鍵字。三種查詢方法的比較 平均效能 斐波那契 折...
二分查詢演算法解析(java版)
1 確定該區間的中點位置 mid low high 2 min代表區間中間的結點的位置,low代表區間最左結點位置,high 代表區間最右結點位置 2 將待查 a值與結點 mid的關鍵字 下面用 r mid key 比較,若相等,則查詢成功,否則確定新的查詢區間 如果 r mid key a 則由表...
java二分查詢
public class binarysearch int value 11 int pos binarysearch int arrays,value system.out.println the pos is pos private static int binarysearch int int...