摘要: // 练习:使用选择法对字符串按字典序排序 #include <stdio.h> #include<string.h> const int N = 5; void selectSort(char str[][20], int n ); // 函数声明,形参str是二维数组名 int main() { 阅读全文
posted @ 2021-05-27 16:46 靓仔欧耶 阅读(32) 评论(1) 推荐(0) 编辑