ADD DS_3_x_string

This commit is contained in:
Kim Yang
2020-08-08 00:06:38 +08:00
parent 591430b42e
commit fce29a01d9
5 changed files with 95 additions and 30 deletions

View File

@@ -0,0 +1,12 @@
//
// Created by kim yang on 2020/8/8.
//
//链式存储
#include <stdio.h>
typedef struct StringNode{
char ch;//每个结点存1个字符,存储密度低每个字符1B每个指针4B
struct StringNode *next;
}StringNode,*String;