首页 新闻 赞助 找找看
4
回答数

待解决问题 C基础结构问题

1 typedef struct 2 { 3 void *Head; 4 5 }queue_t; 6 7 typedef struct node 8 { 9 void *next; 10 11 }no