摘要: 转自:http://student.zjzk.cn/course_ware/data_structure/web/chazhao/chazhao9.2.3.htm分块查找 分块查找(Blocking Search)又称索引顺序查找。它是一种性能介于顺序查找和二分查找之间的查找方法。 1、 二分查找... 阅读全文
posted @ 2014-09-10 18:13 kira2will 阅读(413) 评论(0) 推荐(0) 编辑
摘要: 转自:http://student.zjzk.cn/course_ware/data_structure/web/chazhao/chazhao9.2.2.1.htm二分查找1、二分查找(Binary Search) 二分查找又称折半查找,它是一种效率较高的查找方法... 阅读全文
posted @ 2014-09-10 18:10 kira2will 阅读(2316) 评论(0) 推荐(0) 编辑
摘要: 转自:http://student.zjzk.cn/course_ware/data_structure/web/chazhao/chazhao9.2.1.htm 1 #include "stdafx.h" 2 #include 3 typedef int KeyType; 4 typedef i... 阅读全文
posted @ 2014-09-10 18:06 kira2will 阅读(1446) 评论(0) 推荐(0) 编辑
摘要: 转自:http://student.zjzk.cn/course_ware/data_structure/web/chazhao/chazhao9.1.1.htm本章简介 由于查找运算的使用频率很高,几乎在任何一个计算机系统软件和应用软件中都会涉及到,所以当问题所涉及的数据量相当大时,查找方法的效... 阅读全文
posted @ 2014-09-10 18:05 kira2will 阅读(329) 评论(0) 推荐(0) 编辑