HGDB
HGDB
全部文章
分类
学习笔记(1)
未归档(2)
概念(1)
模板(4)
转载(1)
题解(40)
归档
标签
去牛客网
登录
/
注册
HGDB的博客
TA的专栏
26篇文章
0人订阅
鸽子的每日一题
13篇文章
1423人学习
算法竞赛入门课习题
13篇文章
1267人学习
全部文章
(共49篇)
Sunday模板
const int maxNum = 1005;int shift[maxNum];int Sunday(const string& T, const string& P) { int n = T.length(); int m = P.length(); // 默认值,...
模板
2020-03-10
0
491
BM
#include <algorithm> #include <string> #include <iostream> using namespace std; #define SIZE 256 //字符集字符数 void generateBadChar(c...
模板
2020-03-10
0
557
ac自动机
#include<bits/stdc++.h> using namespace std; typedef long long ll; const int maxn = 2*1e6+9; int trie[maxn][26]; //字典树 int cntword[maxn]; //记...
模板
2020-03-09
1
577
kmp算法
#include<bits/stdc++.h> using namespace std; typedef long long LL; typedef maxn = 1000005; #define iss ios::sync_with_stdio(false) int ans = 0; ...
模板
2020-03-08
2
714
快读快写
快读 inline int read(){ int x=0,f=1; char ch=getchar(); while(ch<'0'||ch>'9'){ if(ch=='-') f=-1; ch=getcha...
模板
2020-03-07
1
631
寒假训练三
H题 #include<bits/stdc++.h> using namespace std; typedef long long LL; const int mod = 1e9+7; bool prime[100005];//储存素数 int sum[100005],f[100005]...
2020-02-09
1
548
【C++】std::是什么?
引例: #include<iostream> int main() { std::cout<<"i love C++"; std::cout<<std::endl; return 0; }1.std是什么? s...
2019-12-29
1
2084
sprintf详解
srpintf()函数的功能非常强大:效率比一些字符串操作函数要高;而且更具灵活性;可以将想要的结果输出到指定的字符串中,也可作为缓冲区,而printf只能输出到命令行上~ 头文件:stdio.h函数功能:格式化字符串,将格式化的数据写入字符串中。函数原型:int sprintf(char buff...
sprintf
2019-12-27
0
904
sscanf功能详解
在处理字符串的程序当中,经常会分析字符串,从一大长串的字符串截取我们需要的的相应类型的数据,这时使用sscanf函数就显得特别简单 sscanf是C语言的库函数 头文件 #include<stdio.h> 语法: int sscanf( const char *buffer,...
格式化输入
2019-12-27
1
749
首页
上一页
1
2
3
4
5
下一页
末页