摘要: #include<stdio.h> #include<stdlib.h> #define N 3//不包括头节点共N个 //创建结构体 typedef struct Node { int value; struct Node* next; }Node,*pNode; int main() { pNo 阅读全文
posted @ 2021-04-07 23:16 磐正 阅读(53) 评论(0) 推荐(0)