题解列表

筛选

纪念品分组 (C语言代码)

摘要:解题思路:手写快排+贪心注意事项:参考代码:#include<stdio.h>int b[30001];void quiksort(int a[],int low,int high){    int ……