#2
巧若拙2014-10-04 22:13
|
typedef struct Node
{
int elem;
struct node * next;
}*LinkList;
LinkList node;
LinkList *node;
定义的node和*node在用法上有什么区别?