摘要: #include <stdio.h> #include <stdlib.h> typedef struct node { int key; struct node *next; }NODE; void DisplayNode(NODE *p) { while(p->next!=NULL) { pri 阅读全文
posted @ 2020-10-10 17:43 倔强jujiang 阅读(79) 评论(0) 推荐(0) 编辑