暴雨将至。
暴雨将至。
全部文章
分类
2016(4)
2018ACM训练题目+思考(10)
2018牛客多校(3)
ACM(47)
acm-icpc(1)
ACM-动态规划(1)
ACM-备战天梯赛(1)
ACM-训练赛(1)
c++(1)
ccpc(1)
cf(2)
codefoces(2)
codefoces 个人赛水题记录(4)
codeforces(7)
Cover the Paths(1)
dfs(1)
dijkstra(1)
dp(11)
gcd(1)
hackerrank(1)
hankrank(1)
pick定理(1)
poj(3)
SAT(1)
sdut(5)
sdut-acm(1)
string(3)
Taotao Picks Apples(1)
uva(1)
vim(1)
vim,acm(2)
Vocabulary(2)
动态规划(1)
匹配(1)
区域赛(1)
区间dp(1)
后缀数组(1)
字典树(1)
完全平方数(1)
山理工(1)
快速排序(1)
愚人节(1)
新突破,新知识(1)
暴力(1)
期望(1)
未归档(271)
积分(1)
算法(2)
编程(1)
编译原理(1)
网络流(1)
莫比乌斯反演(1)
贪心(1)
趣味编程(1)
题解(1)
题集(1)
高斯消元(1)
归档
标签
去牛客网
登录
/
注册
暴雨将至。的博客
全部文章
(共4篇)
string - vector - sort
数据结构实验之排序七:选课名单 Time Limit: 1000MS Memory Limit: 65536KB Submit Statistic Discuss Problem Description 随着学校规模的扩大,学生人数急剧增加,选课名单的输出也成为一个繁重的任务,我校目前有在校...
string
快排
sdut
stl
2017-05-24
0
390
stl--string 实践技巧
1.实际运用过程中 set可以用来存string的每一位 例如 string a; set<char>o; o.insert(a[i]); 2.string 重载了+=,但是没有重载-=,用erase函数代替 3.string可以用replace来进行替换,以[CodeF...
string
acm
c++
stl
日志
2017-11-18
0
374
CodeForces 727B Bill Total Value 大模拟,带小数的整数相加
题目链接 Vasily exited from a store and now he wants to recheck the total price of all purchases in his bill. The bill is a string in which the names of ...
string
codeforces
整数小数
加法
727B
2017-11-24
0
488
C++中数字与字符串之间的转换
1、字符串数字之间的转换 (1)string –> char * string str(“OK”); char * p = str.c_str(); (2)char * –>string char *p = “OK”; string str(p); (3)char * –&...
c++
string
char
转换
2018-01-23
0
706