码迷,mamicode.com
首页 >  
搜索关键字:iostream    ( 13291个结果
ZOJ Monthly, September 2003【部分题解】
今天比赛做了一下这套题目。出了四道。两道水题,两道DP...
分类:其他好文   时间:2014-08-02 18:23:04    阅读次数:336
poj 1861(最小生成树)
poj 1861(最小生成树)...
分类:其他好文   时间:2014-08-01 20:01:32    阅读次数:214
poj 1251(最小生成树)
Description The Head Elder of the tropical island of Lagrishan has a problem. A burst of foreign aid money was spent on extra roads between villages some years ago. But the jungle overtakes roa...
分类:其他好文   时间:2014-08-01 16:14:51    阅读次数:277
【足迹C++primer】58、Template Parameter
Template Parameter #include #include #include #include #include #include using namespace std; template Foo calc(const Foo &a, const Foo &b) { Foo temp=a; //... return temp; } ///Templa...
分类:编程语言   时间:2014-07-31 09:55:46    阅读次数:252
初识输入输出
C++ 语言并未定义任何输入输出(IO)语句,取而代之,包含了一个全面的标准库(iostream)来提供IO机制(以及很多其他设施)。iostream库包含两个基础类型istream和ostream,分别表示输入流核输出流。一个流就是一个字符序列,是从IO设备读出或写入IO设备的。术语“流”想要表达...
分类:其他好文   时间:2014-07-30 17:11:23    阅读次数:220
c++时间增加
//123.cpp:定义控制台应用程序的入口点。//#include"stdafx.h"#include<vector>#include<iostream>#include<stdio.h>#include<windows.h>#include<string>usingnamespacestd;voidSplitSpring(conststring&src,constchar&csplit,vector&l..
分类:编程语言   时间:2014-07-30 03:30:23    阅读次数:240
《C++ Primer Plus》学习笔记11
《C++ Primer Plus》学习笔记11 第17章 输入、输出和文件 主要内容: 1)C++角度的输入和输出 2)iostream类系列 3)重定向 4)ostream类方法 5)格式化输出 6)istream类方法 7)流状态 8)文件I/O 9)使用ifstream类从文件输入 10)使用ofstream类输出到文件 11)使用fstream类进行文件输...
分类:编程语言   时间:2014-07-25 11:25:31    阅读次数:318
stl分析之allocator
allocator封装了stl标准程序库的内存管理系统,标准库的string,容器,算法和部分iostream都是通过allocator分配和释放内存的。标准库的组件有一个参数指定使用的allocator类,比如vector的原型是:template >class vector : protecte...
分类:其他好文   时间:2014-07-25 02:31:04    阅读次数:201
itoa atoi
#pragma once #include <iostream> #include <string> using namespace std; //itoa //int ==> string //10进制 string itoa(int nNum) { int nSize = 128; char* pStr = new char[nSize]; memset(pStr,0,nS...
分类:其他好文   时间:2014-07-25 00:10:54    阅读次数:251
【转】C/C++ URL编码,解码(提取自PHP)
//解码 //头文件自己加上的 #include?<stdio.h> #include?<stdlib.h> #include?<string.h> #include?<string> #include?<iostream> using?namespace?std; /*?{{{?php_htoi ?*/ static?int?php_hto...
分类:编程语言   时间:2014-07-25 00:02:45    阅读次数:459
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!