摘要: 1、代码实现 #include<stdio.h> #include<malloc.h> #include<assert.h> typedef int ElemType; typedef struct Node{ ElemType data; struct Node* next; }Node,*PNo 阅读全文
posted @ 2024-09-14 09:19 颜欢兮 阅读(24) 评论(0) 推荐(0)