mirror of
https://github.com/CodePanda66/CSPostgraduate-408.git
synced 2023-05-21 21:49:33 +08:00
13 lines
246 B
C++
13 lines
246 B
C++
//
|
||
// Created by kim yang on 2020/8/8.
|
||
//
|
||
|
||
//链式存储
|
||
#include <stdio.h>
|
||
|
||
typedef struct StringNode{
|
||
char ch;//每个结点存1个字符,存储密度低,每个字符1B,每个指针4B
|
||
struct StringNode *next;
|
||
}StringNode,*String;
|
||
|