typedef struct Node{
Datatype data;
struct Node*next;
}Node,*Linklist;

问一下这个结构体外边右括号后边 Node,*Linklist;是什么意思  小弟初学数据结构  很疑惑啊  求讲解