mirror of
https://github.com/Didnelpsun/CS408.git
synced 2026-02-08 05:14:48 +08:00
12 lines
243 B
C
12 lines
243 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include "head.h"
|
|
|
|
// 静态链表结点
|
|
typedef struct StaticLinkNode {
|
|
element_type data;
|
|
// 下一个元素的数组下标
|
|
int next;
|
|
} StaticLinkNode;
|
|
// 静态链表数组
|
|
typedef StaticLinkNode StaticLinkList[MAXSIZE]; |