C++ code Summary --- 2015.11.8
C++ code summary
map<int, PersonClassifier>::iterator it与 map<int, PersonClassifier> it的区别与联系
-----------------------------------------------------------------------------------
C++
并行程序的执行:
int
coreNum = omp_get_num_procs();
#pragma
omp parallel for
num_threads(coreNum) default(none)
\
private(po_num,
it, queryLabel) \
shared(al_random_select_num,
satisfy_size, satisfy_classifier_label, not_selected, random_index)
-----------------------------------------------------------------------------------
对输入的句子,统计每一个单词出现的次数:
int
main() {
map<string,
size_t>
word_count;
string
word;
while
(cin >>
word) {
++word_count[word];
}
for
(constauto
&w : word_count)
cout
<<
w.first <<"occurs"<<
w.second
<<
((w.second > 1) ? "times"
: "time")
<<
endl;
system("pause");
}
-----------------------------------------------------------------------------------
统计输入中每一个单词出现的次数(排除常见单词,如:”the”,
”a”, ”an”等等)
#include<iostream>
#include<string>
#include<map>
#include<set>
usingnamespace
std;
int
main() {
map<string,
size_t>
word_count;
set<string>
exclude = {"the",
"a",
"an"};
string
word;
while
(cin >>
word)
if
(exclude.find(word) ==
exclude.end())
++word_count[word];
for
(constauto
&w : word_count)
cout
<<
w.first <<"
occurs "<<
w.second <<"
times "<<
endl;
system("pause");
}
-----------------------------------------------------------------------------------
忽略大小写和标点,如:”example,”
“example.” “Example”应该递增相同计数器。
分为3步骤:
1.先将所有的大写字母改为小写;
2.将所有的标点符号都删去;
3.将转换好的字符串返回.
#include<iostream>
#include<fstream>
#include<map>
#include<string>
#include<algorithm> using namespace std; string &trans(string &s)
{
for (int p=; p<s.size(); p++){
if (s[p] >= 'A' && s[p] <= 'Z')
s[p] -= ('A'-'a');
else if (s[p] == ',' || s[p] == '.')
s.erase(p,);
} return s;
} int main(int argc, char *argv[])
{
ifstream in(argv[]);
if (!in){
cout<<"failed to open file !"<<endl;
exit();
} map<string, size_t> word_count;
string word;
while(in>>word)
++word_count(trans(word)); for (const auto &w:word_count)
cout<< w.first << " occurs " << w.second << " times " <<endl; return ;
}
-----------------------------------------------------------------------------------
对关联容器进行值初始化:
map<string, size_t> word_count;
set<string> exclude = {“the”, ”but”, “and”};
map<string, string> authers = { {“wang”, “xiao”},
{“wang”, ”kui”}, {“wang”, ”jianjun”} };
#include<iostream>
#include<string>
#include<map>
#include<set>
#include<vector>
usingnamespace
std;
int
main() {
vector<int>
ivec;
for
(vector<int>::size_type
i = 0; i != 20; ++i) {
ivec.push_back(i);
ivec.push_back(i);
}
set<int>
iset(ivec.cbegin(), ivec.end());
multiset<int>
miset(ivec.cbegin(), ivec.cend());
cout
<<
ivec.size() <<
endl;
cout
<<
iset.size() <<
endl;
cout
<<
miset.size() <<
endl;
system("pause");
}
pair类型:
一个pair保存两个数据成员,pair是一个用来生成特定类型的模板。
pair<string, string> anon;
pair<string, size_t> word_count;
pair<string, vector<int>> line;
pair<string, string> auther {“wangxiao”, “wangkui”};
pair类型的数据成员是public的,两个成员分别为
first 和
second。
9. ----
#include<iostream>
#include<string>
#include<map>
using namespace std;
int main() {
map<string, size_t> word_count;
string word;
while (cin >> word) {
++word_count[word];
}
for (const auto &w : word_count)
cout << w.first << "occurs" << w.second
<< ((w.second > 1) ? "times" : "time") << endl;
system("pause");
}
C++ code Summary --- 2015.11.8的更多相关文章
- 苹果被拒的血泪史。。。(update 2015.11)
项目提交了N此了,也审核N次了,苹果的审核机制依旧那么不急不慢.昨天刚刚又被拒了.回忆下之前的,总结一下吧. 2015.04.28 昨天被拒非常亏,app的评级是17+,但是在app展示图里有一个比较 ...
- CODE FESTIVAL 2015 決勝(部分)
CODE FESTIVAL 2015 決勝(部分) B - ダイスゲーム 题意: 给\(N\)个\(6\)个面骰子,然后问掷到概率最大的点数是多少. 分析: 随便打表随便发现是\(\huge\left ...
- 【转】Setting up SDL Extension Libraries on Code::Blocks 12.11
FROM: http://lazyfoo.net/tutorials/SDL/06_extension_libraries_and_loading_other_image_formats/window ...
- 【转】Setting up SDL 2 on Code::Blocks 12.11
FROM: http://lazyfoo.net/tutorials/SDL/01_hello_SDL/windows/codeblocks/index.php Setting up SDL 2 on ...
- Twelfth scrum meeting 2015/11/9
第一阶段的开发即将结束,工程代码已经集合完毕,计划在2015年11月10日发布第一阶段的成果,本次会议主要商量下一阶段需要完成的工作以及页面修改,还有测试人员的bug整理. 会议记录: 第一项:界面修 ...
- Murano Weekly Meeting 2015.11.11
Meeting time: 2015.November.11th 1:00~2:00 Chairperson: Serg Melikyan, PTL from Mirantis Meeting su ...
- Murano Weekly Meeting 2015.11.04
Meeting time: 2015.November.4th 1:00~2:00 Chairperson: Serg Melikyan, PTL from Mirantis Meeting sum ...
- 2015/11/9用Python写游戏,pygame入门(8):按钮和游戏结束
昨天没有更新内容,今天相对多写一些. 因为我们已经基本完成游戏框架,但是游戏结束后,并不知道怎样比较好开始.我本来本着懒的原则,想结束后显示一个黑屏,然后你重新点一下鼠标就重新开始.但是那样实在太不像 ...
- Cheatsheet: 2015 11.01 ~ 11.30
Golang Roadomatic: Node vs. Go Quick Guide to Golang for Java Developers 3 Go Gotchas Web Choosing a ...
随机推荐
- classPath
问 spring mvc的web.xml中这个地方的classpath是什么意思? spring springmvc java swnuv 2015年09月25日提问 关注 5 关注 收藏 0 收藏, ...
- struts2DMI(动态方法调用)
DMI(Dynamic Method Invoke)即动态,是strus2的一个特性,我们知道,在最开始学习strus2时,往往一个action中只有一个excute方法,比如说add,delete, ...
- Python中的闭包
简单的闭包的栗子: def counter(statr_at = 0): count = 1 def incr(): nonlocal count #注意由于count类型为immutable,所以需 ...
- pyplot基本绘制(二)
本节主要解决在一个figure中放置多福图,以及图中一些注释文字的添加等问题. 先看一个效果图: 下面是实现代码: __author__ = 'hust' import numpy as np imp ...
- JS判断移动设备最佳方法 并实现跳转至手机版网页
我在开发的Magento或Wordpress主题时,通过都会制作手机版本,为了实现某个片段在手机端和桌面端不同功能,又或者如果是手机设备,就跳转到指定的网页上,那么这里就需要用到JS来做判断了,下面有 ...
- kali 2016的基础配置
1.Kali 2016的更新源 deb http://http.kali.org/kali kali-rolling main contrib non-free 2.安装虚拟机 apt-get upd ...
- linux命令:rmdir
1.命令介绍: rmdir只能用来删除空目录,删除某目录时必须对其父目录有读权限. 2.命令选项: rmdir [选项] 目录 3.命令参数: -p --parent 递归删除目录dirname,当子 ...
- Android WindowManager悬浮窗:不需要申请权限实现悬浮
Android WindowManager悬浮窗:不需要申请权限实现悬浮 附录文章1介绍了Android平台上的悬浮窗WindowManager,WindowManager悬浮窗可以悬浮在And ...
- hihoCoder #1246 : 王胖浩与环 (数学)
题意: 有一个环形序列,可以将其切成连续的k段子序列,那么gcd( 每段子序列的和 )就是优美程度.输出n个整数,表示当k=[1, n] 时的最大优美程度. 思路: 观察一下,当切成1段的时候,gcd ...
- php-多态
<?php //面对对象三大特性//封装//目的:让类更安全//做法:成员变量变为私有的,通过方法来间接操作成员变量,在方法里面加限制条件 //继承//概念:子类可以继承父类的一切//方法重写: ...