免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12
最近访问板块 发新帖
楼主: xie_jian_jun
打印 上一主题 下一主题

[C++] 求C++ Library详细说明【兄弟们,别让它沉下去了】 [复制链接]

论坛徽章:
0
11 [报告]
发表于 2006-02-12 23:52 |只看该作者
俺只有英文版Standard C++ Library Class Reference

目录

Chapter 2: Reference

accumulate
adjacent_difference
adjacent_find
advance
Algorithms
allocator
Associative Containers
auto_ptr
back_insert_iterator, back_inserter
basic_filebuf
basic_fstream
basic_ifstream
basic_ios
basic_iostream
basic_istream
basic_istringstream
basic_ofstream
basic_ostream
basic_ostringstream
basic_streambuf
basic_string
basic_stringbuf
basic_stringstream
Bidirectional Iterators
binary_function
binary_negate
binary_search
bind1st, bind2nd, binder1st, binder2nd
bitset
cerr
char_traits
cin
clog
codecvt
codecvt_byname
collate, collate_byname
compare
complex
Containers
copy, copy_backward
count, count_if
cout
ctype
ctype<char>
ctype_byname
deque
distance
__distance_type
divides
equal
equal_range
equal_to
exception
facets
fill, fill_n
find
find_end
find_first_of
find_if
for_each
Forward Iterators
fpos
front_insert_iterator, front_inserter
Function Objects
generate, generate_n
get_temporary_buffer
greater
greater_equal
gslice
gslice_array
has_facet
Heap Operations
includes
indirect_array
inner_product
inplace_merge
Input Iterators
Insert Iterators
insert_iterator, inserter
ios_base
iosfwd
isalnum
isalpha
iscntrl
isdigit
isgraph
islower
isprint
ispunct
isspace
istream_iterator
istreambuf_iterator
istrstream
isupper
isxdigit
iter_swap
iterator
__iterator_category
iterator_traits
Iterators
less
less_equal
lexicographical_compare
limits
list
locale
logical_and
logical_not
logical_or
lower_bound
make_heap
map
mask_array
max
max_element
mem_fun, mem_fun1, mem_fun_ref, mem_fun_ref1
merge
messages, messages_byname
min
min_element
minus
mismatch
modulus
money_get
money_put
moneypunct, moneypunct_byname
multimap
multiplies
multiset
negate
Negators
next_permutation
not1
not2
not_equal_to
nth_element
num_get
num_put
numeric_limits
numpunct, numpunct_byname
Operators
ostream_iterator
ostreambuf_iterator
ostrstream
Output Iterators
pair
partial_sort
partial_sort_copy
partial_sum
partition
permutation
plus
pointer_to_binary_function
pointer_to_unary_function
pop_heap
Predicates
prev_permutation
priority_queue
ptr_fun
push_heap
queue
Random Access Iterators
random_shuffle
raw_storage_iterator
remove
remove_copy
remove_copy_if
remove_if
replace
replace_copy
replace_copy_if
replace_if
return_temporary_buffer
reverse
__reverse_bi_iterator, reverse_iterator
reverse_copy
reverse_iterator
rotate, rotate_copy
search, search_n
Sequences
set
set_difference
set_intersection
set_symmetric_difference
set_union
slice
slice_array
smanip, smanip_fill
sort
sort_heap
stable_partition
stable_sort
stack
Stream Iterators
string
strstream
strstreambuf
swap
swap_ranges
time_get
time_get_byname
time_put
time_put_byname
tolower
toupper
transform
unary_function
unary_negate
uninitialized_copy
uninitialized_fill
uninitialized_fill_n
unique, unique_copy
upper_bound
use_facet
valarray
vector
wcerr
wcin
wclog
wcout
wstring

论坛徽章:
0
12 [报告]
发表于 2006-02-12 23:54 |只看该作者
举其中的equal的说明文档


-------------------------------------------------
equal


Summary
Compares two ranges for equality.

Data Type and Member Function Indexes
(exclusive of constructors and destructors)
None

Synopsis
#include <algorithm>

template <class InputIterator1, class InputIterator2>
bool equal(InputIterator1 first1, InputIterator1 last1,
            InputIterator2 first2);

template <class InputIterator1, class InputIterator2,
          class BinaryPredicate>
bool equal(InputIterator1 first1, InputIterator1 last1,
            InputIterator2 first2, BinaryPredicate
            binary_pred);


Description
The equal algorithm does a pairwise comparison of all of the elements in one range with all of the elements in another range to see if they match. The first version of equal uses the equal operator (==) as the comparison function, and the second version allows you to specify a binary predicate as the comparison function. The first version returns true if all of the corresponding elements are equal to each other. The second version of equal returns true if for each pair of elements in the two ranges, the result of applying the binary predicate is true. In other words, equal returns true if both of the following are true:

There are at least as many elements in the second range as in the first;

For every iterator i in the range [first1, last1) the following corresponding conditions hold:

*i == *(first2 + (i - first1))

or

binary_pred(*i, *(first2 + (i - first1))) == true

Otherwise, equal returns false.

This algorithm assumes that there are at least as many elements available after first2 as there are in the range [first1, last1).

Complexity
equal performs at most last1-first1 comparisons or applications of the predicate.

Example
//
// equal.cpp
//
#include <algorithm>
#include <vector>
#include <functional>
#include <iostream>
using namespace std;

int main()
{
   int d1[4] = {1,2,3,4};
   int d2[4] = {1,2,4,3};
   //
   // Set up two vectors
   //
   vector<int> v1(d1+0, d1 + 4), v2(d2+0, d2 + 4);

   // Check for equality
   bool b1 = equal(v1.begin(),v1.end(),v2.begin());
   bool b2 = equal(v1.begin(),v1.end(),
                   v2.begin(),equal_to<int>());

   // Both b1 and b2 are false
   cout << (b1 ? "TRUE" : "FALSE")  << " "
        << (b2 ? "TRUE" : "FALSE") << endl;
   return 0;
}
Program Output

FALSE FALSE
Warnings
If your compiler does not support default template parameters, then you always need to supply the Allocator template argument. For instance, you have to write:

vector<int,allocator<int> >

instead of:

vector<int>

If your compiler does not support namespaces, then you do not need the using declaration for std.

论坛徽章:
0
13 [报告]
发表于 2006-02-13 17:59 |只看该作者
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP