// // Created by kim yang on 2020/8/8. // Copyright (c) Kim Yang All rights reserved. // //链式存储——单结点单字符 #include typedef struct StringNode{ char ch;//每个结点存1个字符,存储密度低,每个字符1B,每个指针4B struct StringNode *next; }StringNode,*String;