?? nocompose.cpp
字號(hào):
//: C08:NoCompose.cpp
// From "Thinking in C++, 2nd Edition, Volume 2"
// by Bruce Eckel & Chuck Allison, (c) 2001 MindView, Inc.
// Available at www.BruceEckel.com.
// Writing out the function objects explicitly
//{L} ../TestSuite/Test
#include "copy_if.h"
#include <algorithm>
#include <vector>
#include <string>
#include <iostream>
#include <functional>
#include <cstdlib>
#include <ctime>
using namespace std;
class Rgen {
const int max;
public:
Rgen(int mx = 100) : max(RAND_MAX/mx) {
srand(time(0));
}
int operator()() { return rand() / max; }
};
class BoundTest {
int top, bottom;
public:
BoundTest(int b, int t) : bottom(b), top(t) {}
bool operator()(int arg) {
return (arg >= bottom) && (arg <= top);
}
};
int main() {
vector<int> v(100);
generate(v.begin(), v.end(), Rgen());
vector<int> r;
copy_if(v.begin(), v.end(), back_inserter(r),
BoundTest(30, 40));
sort(r.begin(), r.end());
copy(r.begin(), r.end(),
ostream_iterator<int>(cout, " "));
cout << endl;
} ///:~
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -