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

@@ -5,6 +5,8 @@
//顺序存储——动态数组实现方式(堆分配存储)
#include <stdio.h>
/**定义模块**/
#define MAXLEN 255 //预定义最大串长为255
typedef struct {
@@ -12,3 +14,14 @@ typedef struct {
int length; //串的实际长度
}HString;
/**定义模块**/
/**实现模块**/
//坐等填坑
/**实现模块**/
/**测试模块**/
/**测试模块**/