try throw catch异常处理机制

/*本程序实现分块查找算法  又称索引顺序查找     需要注意的是分块查找需要2次查找  先对块查找  再对块内查找    2013.12.16    18:44*/ #include <iostream> #include <stdio.h> #include <stdlib.h> #define N 12 struct index {     int key;     int start;
相关文章
相关标签/搜索