我正在尝试编写一个抽象数据类型来表示使用链表的整数项集,但我已经被卡住了。我不确定是否可以从另一个引用一个结构声明。这是我的尝试:
struct linkedListElement{
int data;
struct linkedListElement * next;
};
struct linkedListSet {
struct linkedListElement * firstElement;
struct linkedListElement * header;
struct linkedListElement * current;
struct linkedListElement * temp;
header = firstElement;
};
有可能这样做还是有更简单的方法?