1
0
mirror of https://github.com/Didnelpsun/CS408.git synced 2026-02-04 11:24:10 +08:00
Files
CS408/Code/link_string.h
Didnelpsun ae6008c306 更新串
2021-04-23 23:17:50 +08:00

12 lines
238 B
C

#include <stdio.h>
#include <stdlib.h>
#include "head.h"
// 链串
typedef struct LinkStringNode {
// 每个结点存储一位数据
char data;
// 每个结点存储四位数据
//char data[4];
struct LinkStringNode* next;
} LinkStringNode, *LinkString;