查找算法
参考:http://blog.csdn.net/fstar007/article/details/7230659
顺序查找算法
for
折半查找算法
// 二分查找 折半查找 public int SearchErCha(int[] array, int start, int len, int s) { if (len == 0) { return -1; } int center = start + len / 2; if (array[center] == s) { return center; } else if (array[center] > s) { return SearchErCha(array, start, center - start + 1, s); } else { return SearchErCha(array, center, start + len - 1 - center + 1, s); } } public static int[] array = { 1, 2, 3, 4, 5, 6, 8, 9, 12, 67 }; public static void main(String[] args) { Search search = new Search(); int id = search.SearchErCha(array, 0, array.length, 5); System.out.println(id); }
分块查找算法
1. 基本思想
以增加空间复杂度为代价(存储每块中的最大值已经最大值的位置),为原数组做一个索引(索引本身是递增有序的),这样先查索引,再查块内位置。如果索引的选择科学有效,则可以获得比顺序查找快的速度。
2. 算法描述
抽取各块中的最大关键字及其起始位置构成一个索引表ID[l..b],即: ID[i](1≤i≤b)中存放第i块的最大关键字及该块在表R中的起始位置。由于表R是分块有序的,所以索引表是一个递增有序表。
先用二分法查到元素可能所在的块起始位置,而后在块内进行顺序查找。
3. 平均查找长度
平均查找长度在顺序查找和二分查找之间,并且当结点数为元素数量的平方根时,查找长度最小