1.设计库源码pr1.c1 void print1()2 {3 printf("This is the first lib src \n");4 }View Codepr2.c1 void print2()2 {3 printf("This is the second lib src...
分类:
编程语言 时间:
2014-09-22 20:45:43
阅读次数:
151
pop_heap原型:
std::pop_heap
default (1)
template
void pop_heap (RandomAccessIterator first, RandomAccessIterator last);
custom (2)
template
void pop_heap (RandomAcc...
分类:
其他好文 时间:
2014-09-22 19:25:23
阅读次数:
183
partition_point原型:
std::partition_point
template
ForwardIterator partition_point (ForwardIterator first, ForwardIterator last,
UnaryPredicate pred);
该函...
分类:
其他好文 时间:
2014-09-22 18:41:03
阅读次数:
118
题意:
输入一个文本,找出所有不同的单词,按字典序输出所有单词。
stringstream通常是用来做数据转换的
相比c库的转换,它更加安全,自动和直接
#include
stringstream stream
stream
stream >>value 读取
#include
#include
#include
#include
#in...
分类:
其他好文 时间:
2014-09-22 18:31:43
阅读次数:
165
partial_sort原型:
std::partial_sort
default (1)
template
void partial_sort (RandomAccessIterator first, RandomAccessIterator middle,
RandomAccessIterator last)...
分类:
其他好文 时间:
2014-09-22 17:38:32
阅读次数:
298
partition原型:
td::partition
C++98
C++11
template
ForwardIterator partition (ForwardIterator first,
ForwardIterator last, UnaryPredicate pred);
...
分类:
其他好文 时间:
2014-09-22 17:17:23
阅读次数:
170
nth_element原型:
std::nth_element
default (1)
template
void nth_element (RandomAccessIterator first, RandomAccessIterator nth,
RandomAccessIterator last);...
分类:
其他好文 时间:
2014-09-22 14:30:13
阅读次数:
223
无向图欧拉回路 欧拉通路
#include
#include
using namespace std;
struct edge
{
int v, next, b, id;
}e[210];
int vis[210];
int first[10], cnt;
int ans[210], len;
int f[10];
int find(int x)
{
if(x != f[x])
...
分类:
其他好文 时间:
2014-09-22 12:32:52
阅读次数:
234
切换场景bool HelloWorld::init(){ ////////////////////////////// // 1. super init first if ( !CCLayer::init() ) { return false; } CCSize size =CCDir...
分类:
其他好文 时间:
2014-09-22 02:39:12
阅读次数:
256