wangdx
wangdx
全部文章
题解
归档
标签
去牛客网
登录
/
注册
wangdx的博客
全部文章
/ 题解
(共3篇)
设计有setAll功能的哈希表
由于C++的时间戳最多精确到毫秒,程序运行时间不足1毫秒,所以使用自定义的int计数。 #include <iostream> #include <unordered_map> #include <time.h> using namespace std; cla...
2021-03-19
0
829
自然数数组的排序
#include <iostream> #include <vector> using namespace std; void swap(vector<int> &arr, int p1, int p2) { int tmp = arr[p1];...
2021-03-19
1
685
正方形顺时针转动90度
#include <iostream> #include <vector> using namespace std; int main() { int N; cin >> N; int mat[N][N]; for(int i...
2021-03-19
0
650