摘要: #include <stdio.h> #include <stdlib.h> #include <time.h> typedef struct Node{ int value; struct Node *pNext; } Node; /* 打印链表 */void show_data(Node *he 阅读全文
posted @ 2023-06-19 10:28 梓涵VV 阅读(5) 评论(0) 推荐(0) 编辑