问题描述
- 线性表建立链表!!!
-
#include
using namespace std;
typedef int ElemType;
struct lzl
{
ElemType x;
lzl*next;
};
struct SqList
{
lzl *head;
lzl *heab;//建立第二个链表就多加了
void Init(int n);//输入
void lol();//合并
void Traverse();//输出
};请问用线性表建立两个链表就是在 struct SqList里面多加一个东西吗 上面我注释得有
解决方案
不需要。定义两个SqList型的变量就可以了,不需要改动SqList
时间: 2025-01-23 22:59:03