两种结构有何不同?
1:typedef struct node
{
datatype1 data;
struct node *next;
}linklist;
2:
typedef struct node
{
int data;
struct node *next;
}Node,*Linklist;
这两种结构有何不同??
如果相同的话 那第二种的写法是不是有点啰嗦了?
我的头都快晕了
2007-11-01 21:57
2007-11-01 22:26
2007-11-01 22:32
2007-11-01 22:34

2007-11-02 11:38
2007-11-02 19:46