简化#include<stdio.h> #include<stdlib.h> //定义数据类型,假设为int typedef int ElemType; //定义自引用结构体(结点) struct node { ElemType data; struct node *next; }; //typedef为了简写struct node typedef struct node Node; /** * 链表各种函数的声明 */ //创建链表函数声明 Node *CreatList(); /
时间: 2024-01-19 19:03:02 浏览: 101
C标准库函数集
5星 · 资源好评率100%
下面是简化后的代码:
```
typedef int ElemType;
typedef struct node {
ElemType data;
struct node *next;
} Node;
Node *CreatList();
```
阅读全文