题解列表

筛选

第k极值(C语言)

摘要:解题思路:1.  cmp  函数: 这是一个用于比较两个整数大小的比较函数,用于  qsort  函数进行快速排序。它返回两个指针所指向的整……

C语言 指针解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main ( ){     int n=0 ;   &n……

: 二级C语言-分段函数

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>double h(double x){    if(x<……

二级C语言-温度转换

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int a[51];int b[51];int main(){    a[0]=-100;  ……

掌握反向迭代就行

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ &n……

1268: 第K极值

摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; bool f(int&nb……

字符串内排序 vector

摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; int main(){ ……