摘要: #include <stdio.h> #include <stdlib.h> #include <windows.h> typedef int DataType; typedef struct Node { DataType data; struct Node* next; } Node, *Lis 阅读全文
posted @ 2022-03-24 14:51 ccz9729 阅读(163) 评论(0) 推荐(1) 编辑