1
0
mirror of https://github.com/Didnelpsun/CS408.git synced 2026-02-12 15:16:04 +08:00
Files
CS408/Code/Code/link_string.h
2021-08-13 11:02:33 +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;