finish SSTring

This commit is contained in:
Kim Yang
2020-08-23 04:06:16 +08:00
parent fd9cbcb1e9
commit eaf28f09e5
4 changed files with 87 additions and 22 deletions

View File

@@ -6,8 +6,20 @@
//链式存储——单结点多字符
#include <stdio.h>
/**定义模块**/
typedef struct StringNode{
char ch[4];//每个结点存多个个字符,存储密度提高每个字符1B每个指针4B
struct StringNode *next;
}StringNode,*String;
/**定义模块**/
/**实现模块**/
//坐等填坑
/**实现模块**/
/**测试模块**/
/**测试模块**/