串多用顺序结构,链式结构少用,这里提供链串的基本格式
#include<iostream>
using namespace std;
#define max 100
typedef struct chunk
{
char c[max + 1];
linkchunk next;
}chunk,* linkchunk;
typedef struct
{
linkchunk front;//头指针
linkchunk rear;//尾指针
}chunk;
2023-12-11 11:40:39
串多用顺序结构,链式结构少用,这里提供链串的基本格式
#include<iostream>
using namespace std;
#define max 100
typedef struct chunk
{
char c[max + 1];
linkchunk next;
}chunk,* linkchunk;
typedef struct
{
linkchunk front;//头指针
linkchunk rear;//尾指针
}chunk;