摘要: 1 #include 2 #include 3 typedef struct node{ 4 int number; 5 struct node * next; 6 }node; 7 node * initLink(int n){ 8 node * head=(node*)malloc(sizeof(node)); 9 head->numb... 阅读全文
posted @ 2019-04-05 20:22 AQhhhhh 阅读(486) 评论(0) 推荐(0) 编辑