摘要: #include <stdio.h> #include <stdlib.h> typedef struct node {int x; struct node *next; }NODE; NODE *padd(NODE *pa) { NODE *p1,*p2,*p; p1=p2=pa; while(p 阅读全文
posted @ 2020-11-10 09:02 yanglike111 阅读(306) 评论(0) 推荐(0) 编辑