mirror of
https://github.com/Didnelpsun/CS408.git
synced 2026-02-12 23:26:04 +08:00
17 lines
330 B
C
17 lines
330 B
C
// 初始化最大长度
|
|
#define MAXSIZE 5
|
|
// 定义默认值
|
|
#define DEFAULTELEM '\0'
|
|
// 定义默认串值
|
|
#define DEFAULTCHAR '\0'
|
|
// 定义串块链数据长度
|
|
#define DATASIZE 4
|
|
// 定义默认数据类型
|
|
typedef char element_type;
|
|
// 权值类型
|
|
typedef int weight_type;
|
|
|
|
// 比较元素方法
|
|
int CompareElem(element_type elem1, element_type elem2){
|
|
return 0;
|
|
} |