摘要: #include<stdio.h> #include<stdlib.h> typedef struct Node { int data; struct Node* next; }Node,*List; void Print(List L) { Node* node; node = L->next; 阅读全文
posted @ 2021-09-30 14:15 磐正 阅读(20) 评论(0) 推荐(0)