模板

基数排序 1 const int N = 1e5 + 10; 2 int n, a[N]; 3 4 void radix_sort(unsigned int *a, int l, int r) 5 { 6 const unsigned int D = 1 << 16, k = D - 1; 7 st
posted @ 2022-03-14 07:48  jhqqwq  阅读(25)  评论(0编辑  收藏  举报