码迷,mamicode.com
首页 >  
搜索关键字:std    ( 41627个结果
2021团体程序设计天梯赛 L1-6 吉老师的回归
思路: 水题,略过 Tip: 无 #include <bits/stdc++.h> using namespace std; int main() { int n, t, num = 0; string now; cin >> n >> t; getchar(); for (int i = 1; i ...
分类:其他好文   时间:2021-04-27 15:16:28    阅读次数:0
使用opencv第三方库的makefile文件示例
1.生成可执行程序 INCLUDE = $(shell pkg-config --cflags opencv)#opencv的include头文件路径 LIBS = $(shell pkg-config --libs opencv) -lm #opencv的lib库文件路径 OTHERLIB= -l ...
分类:其他好文   时间:2021-04-27 15:10:02    阅读次数:0
2021团体程序设计天梯赛 L1-8 乘法口诀数列
思路: 水题,略过 Tip: 无 #include <bits/stdc++.h> using namespace std; const int maxn = 1000 + 5; int ans[maxn]; int main() { int a, b, n; cin >> a >> b >> n; ...
分类:其他好文   时间:2021-04-27 15:09:43    阅读次数:0
2021团体程序设计天梯赛 L2-1 包装机
思路: 水题,略过 Tip: 无 #include <bits/stdc++.h> using namespace std; const int maxn = 1000 + 5; queue<char> que[maxn]; stack<char> s; int main() { int n, m, ...
分类:其他好文   时间:2021-04-27 15:08:37    阅读次数:0
主席树模板
#include <iostream> #include <algorithm> #include <cstdio> using namespace std; const int N = 2e5 * 20; int a[N], b[N], root[N]; struct President_Tree ...
分类:其他好文   时间:2021-04-27 15:01:57    阅读次数:0
hash
#include <bits/stdc++.h> typedef unsigned long long ll; const ll P=1331; using namespace std; ll hash1[1000000],u[1000000]; ll get(int l,int r){ retur ...
分类:其他好文   时间:2021-04-27 15:00:27    阅读次数:0
表达式求值
#include <iostream> #include <stack> #include <cstring> #include <unordered_map> using namespace std; typedef long long ll; stack<int>num; stack<char> ...
分类:其他好文   时间:2021-04-27 14:59:52    阅读次数:0
C++(自带异常,使用示例)
C++(自带异常,使用示例) #define _CRT_SECURE_NO_WARNINGS #include <iostream> #include <string> //系统提供标准异常 #include <stdexcept> using namespace std; class Person ...
分类:编程语言   时间:2021-04-27 14:52:17    阅读次数:0
PAT 1006 sign in and sign out
#include<cstdio> #include<cstring> using namespace std; char firstper[20]; char lastper[20]; char firsttime[20]="23:59:59"; char lasttime[20]="00:00:0 ...
分类:其他好文   时间:2021-04-27 14:33:17    阅读次数:0
C++(template模板 && 类模板 成员函数类外实现)
C++(template模板 && 类模板 成员函数类外实现) 类模板,成员函数类外实现 #define _CRT_SECURE_NO_WARNINGS #include <iostream> #include <string> using namespace std; template<class ...
分类:编程语言   时间:2021-04-27 14:30:06    阅读次数:0
41627条   上一页 1 ... 15 16 17 18 19 ... 4163 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!