摘要: #include <stdio.h>#include <malloc.h>typedef struct Node{ int data; struct Node *next;}Node; void reverseNode(Node *head){ Node *cur = head->next; Nod 阅读全文
posted @ 2020-08-29 12:42 牛牛码代码 阅读(246) 评论(0) 推荐(0) 编辑