摘要: #include <stdio.h> #include <stdlib.h> #include <string.h> #define swap(a, b) ({\ __typeof(a) temp = a;\ a = b, b = temp;\ }) typedef struct Node { do 阅读全文
posted @ 2021-11-01 00:52 代码附体 阅读(98) 评论(0) 推荐(0) 编辑