码迷,mamicode.com
首页 >  
搜索关键字:pair    ( 2800个结果
Map生成器 map适配器如今能够使用各种不同的Generator,iterator和常量值的组合来填充Map初始化对象
Map生成器 map适配器如今能够使用各种不同的Generator,iterator和常量值的组合来填充Map初始化对象package org.rui.collection2.map;/** * map生成器 * @author lenovo * */public class Pair { publ...
分类:其他好文   时间:2014-06-18 14:28:05    阅读次数:213
c++之map
C++Map:mapmapstudent; mapstudent相当于一个键值对数组,存储元素是一个个的键值对。mapstudent.insert(pair(1,"std_one"));换种写法:Mapstudent[1]=”std_one”; 1是key,”std_one”是valuema...
分类:编程语言   时间:2014-06-17 20:51:38    阅读次数:280
结对编程
结对编程(英语:Pair programming)是一种敏捷软件开发的方法,两个程序员在一个计算机上共同工作。一个人输入代码,而另一个人审查他输入的每一行代码。输入代码的人称作驾驶员,审查代码的人称作观察员(或导航员)。两个程序员经常互换角色。 在结对编程中,观察员同时考虑工作的战略性方向,提出改进...
分类:其他好文   时间:2014-06-16 14:01:04    阅读次数:244
BZOJ 1786: [Ahoi2008]Pair 配对 题解
【原题】 1786: [Ahoi2008]Pair 配对 Time Limit: 10 Sec  Memory Limit: 64 MB Submit: 399  Solved: 241 [Submit][Status] Description Input Output Sample Input 5 4 4 2 -1 -1 3 Sam...
分类:其他好文   时间:2014-06-16 11:42:34    阅读次数:236
Codeforces Round #195 (Div. 2) A. Vasily the Bear and Triangle
水题,注意数据范围即可#include #include #include using namespace std;typedef pair Point;int main(){ int x,y; cin >> x >>y; Point a,b; if((x>0 && y > ...
分类:其他好文   时间:2014-06-16 10:47:47    阅读次数:226
C++11 新特性之 tuple
我们在C++中都用过pair.pair是一种模板类型,其中包含两个数据值,两个数据的类型可以不同.pair可以使用make_pair构造 pair p = make_pair(1, "a1"); 如果传入的参数为多个,那么就需要嵌套pair,如下代码 #include #include using namespace std; int main() { // ,注意:在嵌套模板...
分类:编程语言   时间:2014-06-15 13:39:48    阅读次数:331
C++11 新特性之 序列for循环
在C++中在C++中for循环可以使用类似java的简化的for循环,可以用于遍历数组,容器,string以及由begin和end函数定义的序列(即有Iterator) #include #include #include using namespace std; int main() { map ms; ms.insert(make_pair("a", 1)); ms....
分类:编程语言   时间:2014-06-15 10:46:30    阅读次数:241
找最大独立集问题-Finding a Maximal Independent Set
独立集和最大独立集:A set of vertices I ? V is called independent if no pair of vertices in I is connected via an edge in G. An independent set is called maximal if by including any other vertex not in I, the independence property is violated....
分类:其他好文   时间:2014-06-10 06:30:03    阅读次数:369
codeforces Round #252 (Div. 2) C - Valera and Tubes
贪心算法,每条路径最短2格,故前k-1步每次走2格,最后一步全走完由于数据比较小,可以先打表#include #include #include #include using namespace std;typedef pair Point;int main(){ int n, m, k, f...
分类:其他好文   时间:2014-06-10 00:33:15    阅读次数:302
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!