码迷,mamicode.com
首页 >  
搜索关键字:stl stlport vs2010    ( 8897个结果
Ural 1613 For Fans of Statistics(vector应用)
题目: For Fans of Statistics Time Limit:1000MS     Memory Limit:65536KB     64bit IO Format:%I64d & %I64 Description Have you ever thought about how many people are transported...
分类:其他好文   时间:2014-08-04 21:44:08    阅读次数:381
STL--H - Black Box(两个优先队列,求第k小的值)
H - Black Box Time Limit:1000MS     Memory Limit:10000KB     64bit IO Format:%I64d & %I64u Submit Status Description Our Black Box represents a primitive database. It can save an int...
分类:其他好文   时间:2014-08-04 21:29:40    阅读次数:523
STL--G - For Fans of Statistics(两个判断条件-二分)
G - For Fans of Statistics Time Limit:1000MS     Memory Limit:65536KB     64bit IO Format:%I64d & %I64u Submit Status Description Have you ever thought about how many people are tran...
分类:其他好文   时间:2014-08-04 21:29:28    阅读次数:318
STL 之map解决 Message Flood(原字典树问题)
Message Flood Time Limit:1500MS Memory Limit:65536KB 64bit IO Format:%lld & %lluDescriptionWell, how do you f...
分类:其他好文   时间:2014-08-04 21:01:57    阅读次数:295
VS2010远程调试
1,A:调试机。B:远端被调试机。2,从A机的VS2010的安装目录里面,找到../Remote Debugger文件,复制到B机。3,启动B机上复制过来的目录下的msvsmon.exe貌似要添加和A机相同用户名和密码的账号,我这A,B机本来就都是相同的账号密码所以没有试这个情况。貌似若选 无Win...
分类:其他好文   时间:2014-08-04 20:40:48    阅读次数:240
在用VS2010连接oracle数据库时ORA-12504错误
在用VS2010连接oracle数据库时,可能会出现:ORA-12504: TNS: 监听程序在 CONNECT_DATA 中未获得 SERVICE_NAME只需在web.config文件Data Source设置成Data Source=要连接的IP/orcl
分类:数据库   时间:2014-08-04 20:40:17    阅读次数:337
STL 之 map的用法
Map是STL的一个关联容器,它提供一对一(其中第一个可以称为关键字,每个关键字只能在map中出现一次,第二个可能称为该关键字的值)的数据处理能力,由于这个特性,它完成有可能在我们处理一对一数据的时候,在编程上提供快速通道。这里说下map内部数据的组织,map内部自建一颗红黑树(一种非严格意义上的平...
分类:其他好文   时间:2014-08-04 20:36:57    阅读次数:234
sicily 1194 Message Flood (STL的map和set应用练习)
STL真心方便啊。这题分别用了map和set做了一下。注意这个题有个坑点,就是不区分大小写。。。。。...
分类:其他好文   时间:2014-08-04 18:01:50    阅读次数:286
POJ 2418 Hardwood Species(STL中map的应用)
题目地址:POJ 2418 通过这个题查了大量资料。。知道了很多以前不知道的东西。。。。 在代码中注释说明吧。 代码如下: #include #include #include #include #include #include #include #include #include #include using namespace std; int main() { ...
分类:其他好文   时间:2014-08-04 14:30:57    阅读次数:172
使用红黑树查找最小n个数,适合处理大数据
使用STL容器 multiset 代码: #include #include #include using namespace std; typedef multiset > intSet; typedef multiset >::iterator intIter; void findMaxNum(const vector &data,int k){ intSet Max; ...
分类:其他好文   时间:2014-08-04 14:20:17    阅读次数:197
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!