1
0
mirror of https://github.com/Didnelpsun/CS408.git synced 2026-02-08 21:34:41 +08:00
Files
CS408/Code/Code/link_stack.h
2021-08-13 11:02:33 +08:00

10 lines
180 B
C

#include <stdio.h>
#include <stdlib.h>
#include "head.h"
// 链栈结点
typedef struct LinkStackNode {
element_type data;
struct LinkStackNode* next;
} LinkStackNode, * LinkStack;