今天比赛做了一下这套题目。出了四道。两道水题,两道DP...
分类:
其他好文 时间:
2014-08-02 18:23:04
阅读次数:
336
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
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
//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
第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
allocator封装了stl标准程序库的内存管理系统,标准库的string,容器,算法和部分iostream都是通过allocator分配和释放内存的。标准库的组件有一个参数指定使用的allocator类,比如vector的原型是:template >class vector : protecte...
分类:
其他好文 时间:
2014-07-25 02:31:04
阅读次数:
201
#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
//解码
//头文件自己加上的
#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