摘要: 题解: 此题需要先排序在进行计算 #include<stdio.h>void swap(int *a,int *b){ int t=*a; *a=*b; *b=t;} //void sort(int a[],int s,int e,int b[]){// if(s>=e){// return;//  阅读全文
posted @ 2020-01-31 13:28 BlueValentines 阅读(136) 评论(0) 推荐(0)