本月博客排行
-
第1名
龙儿筝 -
第2名
johnsmith9th -
第3名
wy_19921005 - zysnba
- sgqt
- lemonhandsome
年度博客排行
-
第1名
宏天软件 -
第2名
青否云后端云 -
第3名
龙儿筝 - gashero
- wallimn
- vipbooks
- benladeng5225
- wy_19921005
- fantaxy025025
- qepwqnp
- e_e
- 解宜然
- zysnba
- ssydxa219
- sam123456gz
- javashop
- arpenker
- tanling8334
- kaizi1992
- xpenxpen
- gaojingsong
- wiseboyloves
- xiangjie88
- ranbuijj
- ganxueyun
- sichunli_030
- xyuma
- wangchen.ily
- jh108020
- lemonhandsome
- zxq_2017
- jbosscn
- Xeden
- luxurioust
- lzyfn123
- zhanjia
- forestqqqq
- johnsmith9th
- ajinn
- nychen2000
- wjianwei666
- hanbaohong
- daizj
- 喧嚣求静
- silverend
- mwhgJava
- kingwell.leng
- lchb139128
- lich0079
- kristy_yy
最新文章列表
【STL】next_permutation的原理和使用
1、碰到next_permutation(permutation:序列的意思)
今天在TC上碰到一道简单题(SRM531 - Division Two - Level One),是求给定数组不按升序排列的最小字典序列(Sequence of numbers A is lexicographically smaller than B if A contains a smaller number on ...
[转载]hash_map 原理 详解
搬家中, 请关注 nuihq.com
转载自:http://www.cppblog.com/kevinjee/archive/2008/12/01/68326.html
1 数据结构:hash_map原理
这是一节让你深入理解hash_map的介绍 ...
利用STL判断string是否为整数(set版)
还是利用STL判断string是否为整数中的那个问题,加一项要求:
1
2
111
222
111
111111
22344
111
2
1
oaini
woain
sdjjj
woaini
文本中,有相等的string,最终区分出来的,是唯一的。
自然,就想到了用set容器
修改后的代码,如下:
#include <st ...
利用STL判断string是否为整数
有这么一个文件,内容如下:
1
2
111
222
111
111111
22344
oaini
woain
sdjjj
woaini
怎么将其中的整数区分出来?
解决思路:
1、按行输入;
2、定义为string;
3、判断该string是否为整数;
4、存入vector;
5、输出。
整个过程,第三步是核心。
完 ...
HDU 1234 开门人和关门人 .
开门人和关门人
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 5354 Accepted Submission(s): 2759
Problem Description
每天第一个到机房的人要把门打开,最后一个离开的人要把门关好 ...
HDU 2072 单词数
http://acm.hdu.edu.cn/showproblem.php?pid=2072
set以及string的一点应用
#include <iostream>
#include <fstream>
#include <algorithm>
#include <string>
#include <set>
//#in ...