swust赵兴达
swust赵兴达
全部文章
ACM-ICP...
BFS(1)
KMP(3)
Linux(1)
Python-数据分析(2)
string(1)
two points(1)
二分(2)
分治(1)
博弈论-SG函数(4)
图论-环与根(2)
基础DP(2)
多项式(3)
字典树(1)
并查集(3)
心得体会(1)
思维(1)
数位DP(1)
数学-概率期望(1)
数学建模(1)
数据结构-RMQ(2)
数据结构-分块(1)
数据结构-并查集(2)
数据结构-莫队算法(1)
数论(6)
最短路(1)
未归档(99)
树形DP(2)
树状数组(1)
线段树(4)
网络流(1)
莫比乌斯函数(1)
莫比乌斯反演(1)
计算机基本原理(2)
计算机等级考试(1)
读书笔记(16)
输入输出外挂(1)
题解(6)
归档
标签
去牛客网
登录
/
注册
&
Hello
全部文章
/ ACM-ICPC-小知识
(共5篇)
The first part of the STL
目录 queue queue简单介绍 queue举例 stack stack用法 示例 vector 函数介绍 用法示例 deque queue queue简单介绍 queue举例 #include<bits/stdc++.h> //#i...
2019-03-18
0
756
The second part of the STL
目录 string string 的构造 string 比较大小 string 长度判断以及遍历 string 三个常用的函数 priority_queue 优先队列基本使用 结构体优先队列 Pair pair的基本用法 Set set的基本用法 set的常用的函...
2019-03-15
0
632
进制转化的函数
1,strtol() strtol() 函可将n进制数转换为10进制,用来将字符串转换为长整型数(long),其原型为:long int strtol (const char* str, char** endptr, int base); error存储第一个转换失败以...
2018-09-01
0
554
C++ STL lower_bound & upper_bound
background 首先,lower_bound和upper_bound是C++ STL中提供的非常实用的函数。其操作对象可以是vector、set以及map。lower_bound返回值一般是>= 给定val的最小指针(iterator)。upper_bound返回值则是 > 给定...
2018-08-07
0
845
C++中cin、cin.get()、cin.getline()、getline()、gets()等函数的用法
学C++的时候,这几个输入函数弄的有点迷糊;这里做个小结,为了自己复习,也希望对后来者能有所帮助,如果有差错的地方还请各位多多指教(本文所有程序均通过VC 6.0运行) 1、cin 2、cin.get() 3、cin.getline() 4、getline() 5、gets() 6、getchar...
2018-07-30
0
717