码迷,mamicode.com
首页 >  
搜索关键字:stl stlport vs2010    ( 8897个结果
Poj 1151 Invitation Cards dijkstra 堆优化
很裸的最短路,不过节点数和边数都是1e6,直接dij肯定是不行了,稀疏图用heap优化一下就好o(╯□╰)o注意STL里面的优先队列是优先级大的(值大的)在前面的,一开始没注意WA了好几发,哎,太粗心了#include #include #include #include #include #inc...
分类:其他好文   时间:2014-07-22 22:54:33    阅读次数:212
asp.net网站发布
1.iis里面新建一个网站,目录可以新建(例如:F:\dotNetWeb),还可以创建子文件夹如:F:\dotNetWeb\my,网站路径是可以自己设置的,也可以使用IIS默认的网站。2.vs2010对应项目右键 ->发布网站, 1)如果是asp.net网站项目,直接设置"目标位置" 。 2...
分类:Web程序   时间:2014-07-19 21:21:06    阅读次数:250
参考C++STL标准库中对了的使用方法
http://www.cppblog.com/zhenglinbo/archive/2012/09/18/191170.html参考:http://www.cppblog.com/zhenglinbo/archive/2012/09/18/191170.html当然是使用c++中的STL 的queu...
分类:编程语言   时间:2014-07-19 19:34:33    阅读次数:220
0716-----C++Primer听课笔记----------STL之顺序容器、迭代器
1. 顺序容器的初始化操作1.1 顺序容器(vector,list,deque)的五种初始化方法,以 vector 为例。#include #include #include using namespace std;int main(int argc, const char *argv[]){ .....
分类:编程语言   时间:2014-07-19 19:27:08    阅读次数:278
STL 源码剖析 stl_numeric.h -- copy
唯一对外接口 /*-------------------------------------------------------------------------------------- * copy 函数及其重载形式 */ //完全泛化版本。 template // ? 这里的 InputIterator 和 OutputIterator 都只是名称而已,哪里确保了它们真的至少是 InputIterator 和 O...
分类:其他好文   时间:2014-07-18 22:39:22    阅读次数:302
STL 源码剖析 stl_numeric.h
描述、源码、示例 version 1:普通操作版本 version 2: 泛化操作版本 1.accumulate 描述:计算 init 和 [first, last) 内所有元素的总和 源码: //version 1 template T accumulate(InputIterator first, InputIterator last, T init) { for ( ; first != last; ++first) ini...
分类:其他好文   时间:2014-07-18 22:16:32    阅读次数:283
STL 源码剖析 stl_algobase.h
1.iter_swap 描述:将两个 ForwardIterator 所指的对象对调 源码: //version 1 template inline void __iter_swap(ForwardIterator1 a, ForwardIterator2 b, T*) { T tmp = *a; *a = *b; *b = tmp; } //version 2 template...
分类:其他好文   时间:2014-07-18 21:32:42    阅读次数:244
BZOJ 2761 不重复数字 (Hash)
题解:直接使用STL中的hash去重即可#include #include using namespace std;int ans[50010];int main(){ int T,n,tmp; scanf("%d",&T); while(T--){ int cnt=...
分类:其他好文   时间:2014-07-17 10:02:58    阅读次数:231
stl_algo.h
// Algorithm implementation -*- C++ -*-// Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,// 2010, 2011// Free Software Foundation,...
分类:其他好文   时间:2014-07-16 16:56:01    阅读次数:375
[整理]C结构实现位段(bit field)
#include #include typedef struct A{ int a:5; int b:3; unsigned c:8; unsigned d:8;} Type_A;/* VS2010, Windows XP, Debug模式下运行 */int main(void){ struc...
分类:其他好文   时间:2014-07-16 16:47:14    阅读次数:210
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!