mirror of
https://github.com/CodePanda66/CSPostgraduate-408.git
synced 2023-05-21 21:49:33 +08:00
➕ finish SSTring
This commit is contained in:
@@ -5,6 +5,8 @@
|
||||
|
||||
//顺序存储——动态数组实现方式(堆分配存储)
|
||||
#include <stdio.h>
|
||||
|
||||
/**定义模块**/
|
||||
#define MAXLEN 255 //预定义最大串长为255
|
||||
|
||||
typedef struct {
|
||||
@@ -12,3 +14,14 @@ typedef struct {
|
||||
int length; //串的实际长度
|
||||
}HString;
|
||||
|
||||
/**定义模块**/
|
||||
|
||||
/**实现模块**/
|
||||
//坐等填坑
|
||||
|
||||
/**实现模块**/
|
||||
|
||||
/**测试模块**/
|
||||
|
||||
|
||||
/**测试模块**/
|
||||
|
||||
Reference in New Issue
Block a user