码迷,mamicode.com
首页 >  
搜索关键字:pair    ( 2800个结果
std::map常用方法
mapEmployees;Employees["MikeC."]=12306; Employees.insert(make_pair("PeterQ.",5328));
分类:其他好文   时间:2014-06-10 14:15:43    阅读次数:160
20140606
1、求一串字符串中连续出现次数最多的字串 #include#include#includeusing namespace std;pair fun(const string &str){ vector substrs; int maxcount=1,count=1; string substr; i...
分类:其他好文   时间:2014-06-10 00:18:57    阅读次数:266
C++ Primer笔记7_STL之关联容器
关联容器 与顺序容器不同,关联容器的元素是按关键字来访问和...
分类:编程语言   时间:2014-06-08 02:19:20    阅读次数:369
projecteuler---->problem=21----Amicable numbers
Let d(n) be defined as the sum of proper divisors of n (numbers less than n which divide evenly into n). If d(a) = b and d(b) = a, where a b, then a and b are an amicable pair and each of a and b...
分类:其他好文   时间:2014-06-07 13:40:53    阅读次数:226
Iterative (non-recursive) Quick Sort
An iterative way of writing quick sort: #include #include #include using namespace std; void quickSort(int A[], int n) { stack> stk; stk.push(make_pair(0, n-1)); while (!stk.empty()) { pair ...
分类:其他好文   时间:2014-06-03 00:16:43    阅读次数:357
windows上通过secureCRT和putty创建密钥登录
前面介绍了linux的ssh远程登录协议和ssh无密码登录方式,这里通过secureCRT和putty来看一下具体的密钥登录,也算做个备忘录吧。 1.linux下创建密钥对         还记得前面说的怎么创建密钥对吧: [sshtest@localhost ~]$ ssh-keygen -t rsa Generating public/private rsa key pair. Ente...
分类:Windows程序   时间:2014-06-02 23:50:05    阅读次数:782
Amicable numbers -- Javascript 实现
问题描述: Let d(n) be defined as the sum of proper divisors of n (numbers less than n which divide evenly into n). If d(a) = b and d(b) = a, where a  b, then a and b are an amicable pair and each ...
分类:编程语言   时间:2014-06-02 12:31:42    阅读次数:298
POJ 3579- Median
?? Description Given N numbers, X1, X2, ... , XN, let us calculate the difference of every pair of numbers: ∣Xi - Xj∣ (1 ≤ i < j ≤ N). We can get C(N,2) differences through this work, and no...
分类:其他好文   时间:2014-06-01 14:07:56    阅读次数:347
Coursera Algorithm II PA2 Q2
题意:what is the largest value ofksuch that there is ak-clustering with spacing at least 3? That is, how many clusters are needed to ensure that no pair...
分类:其他好文   时间:2014-05-29 20:39:26    阅读次数:305
C++ pair(对组)用法
类模板:template struct pair参数:T1是第一个值的数据类型,T2是第二个值的数据类型。功能:pair将一对值组合成一个值,这一对值可以具有不同的数据类型(T1和T2),两个值可以分别用pair的两个公有函数first和second访问。具体用法:1.定义(构造):1 p...
分类:编程语言   时间:2014-05-26 17:54:31    阅读次数:327
2800条   上一页 1 ... 276 277 278 279 280 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!