摘要:
#include #include typedef struct Node { int data; struct Node *next; }Node; Node* CreatList(int n) { Node *head,*p,*q; head=(Node*)malloc(sizeof(Node)); q=head; for(int i=0;... 阅读全文
posted @ 2019-02-01 22:37
qmzhna
阅读(650)
评论(0)
推荐(0)


浙公网安备 33010602011771号