🔥 change Structure of Src

This commit is contained in:
KimYang
2020-09-16 23:19:11 +08:00
parent a3b1a79ab9
commit 41fa409c11
39 changed files with 51 additions and 21 deletions

View File

@@ -0,0 +1,27 @@
//
// Created by kim yang on 2020/8/7.
// Copyright (c) Kim Yang All rights reserved.
//
//顺序存储——动态数组实现方式(堆分配存储)
#include <stdio.h>
/**定义模块**/
#define MAXLEN 255 //预定义最大串长为255
typedef struct {
char *ch;//按串长分配存储区ch指向串的基地址
int length; //串的实际长度
}HString;
/**定义模块**/
/**实现模块**/
//坐等填坑
/**实现模块**/
/**测试模块**/
/**测试模块**/