mirror of
https://github.com/CodePanda66/CSPostgraduate-408.git
synced 2023-05-21 21:49:33 +08:00
🔥 change Structure of Src
This commit is contained in:
26
DataStructure/Src/DS_3_String/DS_3_2_LString.cpp
Normal file
26
DataStructure/Src/DS_3_String/DS_3_2_LString.cpp
Normal file
@@ -0,0 +1,26 @@
|
||||
//
|
||||
// Created by kim yang on 2020/8/8.
|
||||
// Copyright (c) Kim Yang All rights reserved.
|
||||
//
|
||||
|
||||
//链式存储——单结点单字符
|
||||
#include <stdio.h>
|
||||
|
||||
/**定义模块**/
|
||||
typedef struct StringNode{
|
||||
char ch;//每个结点存1个字符,存储密度低,每个字符1B,每个指针4B
|
||||
struct StringNode *next;
|
||||
}StringNode,*String;
|
||||
|
||||
|
||||
/**定义模块**/
|
||||
|
||||
/**实现模块**/
|
||||
//坐等填坑
|
||||
|
||||
/**实现模块**/
|
||||
|
||||
/**测试模块**/
|
||||
|
||||
|
||||
/**测试模块**/
|
||||
Reference in New Issue
Block a user