【问题描述】有N个整数,用计数排序法排序 【输入形式】N个整数 【输出形式】N个整数 【样例输入】 10 2 1 4 2 3 3 3 2 9 5 【样例输出】 1 2 2 2 3 3 3 4 5 9
C语言
#include<stdio.h> #include<string.h> #include