typedef struct node{int data;struct node*next;}*p;p a;后三行分别是什么意思
结构体指针类型p a; 等价于 struct node * a;
a是指向struct node结构体变量的指针