cur*_*der 2 c++ data-structures
我是数据结构和算法的新手.我遇到了以下代码
typedef struct node
{
int data;
node *next;
};
Run Code Online (Sandbox Code Playgroud)
任何人都可以告诉我为什么我们接下来宣布节点*?不能*下一个被声明为int*next?