2019年2月1日
摘要: #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 阅读(628) 评论(0) 推荐(0) 编辑