1
0
mirror of https://github.com/Didnelpsun/CS408.git synced 2026-02-08 21:34:41 +08:00
Files
CS408/Code/search.h
2021-05-03 23:28:51 +08:00

14 lines
207 B
C

#include <stdio.h>
#include <stdlib.h>
#include "head.h"
// 分块查找
// 分块索引表
typedef struct {
// 块中最大元素
element_type max;
// 存储区间的最低索引和最高索引
int low, high;
} BlockSearchIndex;