typedef struct Node{ int Data; struct Node *Next; }Node;*List;
定义Node *P;List p;这两个定义方法相同吗?
是的,完全相同。因为Node *就是List