Files
CSPostgraduate-408/DataStructure/DS_3_String/DS_3_3_LString.cpp
2020-08-11 15:29:52 +08:00

13 lines
281 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.
//
//链式存储——单结点多字符
#include <stdio.h>
typedef struct StringNode{
char ch[4];//每个结点存多个个字符,存储密度提高每个字符1B每个指针4B
struct StringNode *next;
}StringNode,*String;