Files
CSPostgraduate-408/DataStructure/Src/DS_3_String/DS_3_3_LString.cpp
2020-09-26 22:33:18 +08:00

25 lines
485 B
C++
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
//
// Created by kim yang on 2020/8/8.
// Copyright (c) Kim Yang All rights reserved.
//
//链式存储——单结点多字符
#include <stdio.h>
/**定义模块**/
typedef struct StringNode{
char ch[4];//每个结点存多个个字符,存储密度提高每个字符1B每个指针4B
struct StringNode *next;
}StringNode,*String;
/**定义模块**/
/**实现模块**/
//坐等填坑
/**实现模块**/
/**测试模块**/
/**测试模块**/