mid
-
快排(提升效率)
#include<iostream>using namespace std;int n,a[1000001];void qsort(int l,int r)//应用二分…
-
判断字符数组中是否所有的字符都只出现过一次 & 在有序但含有空的数组中查找字符串
判断字符数组中是否所有的字符都只出现过一次 题目:判断数组中所有的数字是否只出现一次 《程序员代码面试指南》第81题 P261 难度:要求1:士★☆☆☆ 要求2:尉★★☆☆ 要求1…
-
基础算法 788.逆序对的数量
#include<iostream> using namespace std; const int N = 1e6+10; int n; long long cnt=0…
-
基础算法 787.归并排序
代码模板 #include<iostream> using namespace std; const int N = 1e6 + 10; int n; int q[N]…