私はデータ構造とアルゴリズムの初心者です。次のコードに出くわしました
typedef struct node
{
int data;
node *next;
};
node *next を宣言している理由を教えてください。*next を int *next として宣言することはできませんか?