摘要: 1 #include "node.h" 2 #include <stdio.h> 3 #include <stdlib.h> 4 5 typedef struct _node { 6 int value; 7 struct _node *next; 8 } Node; 9 10 typedef st 阅读全文
posted @ 2019-12-05 23:34 郑NINE 阅读(169) 评论(0) 推荐(0) 编辑