我是数据结构和算法的新手。我遇到了以下代码
typedef struct node
{
int data;
node *next;
};
谁能告诉我为什么我们要声明 node *next?*next 不能声明为 int *next 吗?