摘要: #include <stdio.h> #include <string.h> // 比较函数,用于判断两个字符串的大小关系 int compare(const void* a, const void* b) { return strcmp(*(const char**)a, *(const char 阅读全文
posted @ 2023-06-28 13:39 小城熊儿 阅读(116) 评论(0) 推荐(0) 编辑