mirror of
https://github.com/CodePanda66/CSPostgraduate-408.git
synced 2023-05-21 21:49:33 +08:00
14 lines
328 B
C++
14 lines
328 B
C++
//
|
||
// 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;
|
||
|