Vous êtes sur la page 1sur 4

<algorithm>

Functions
adjacent_find()
all_of()
any_of()
binary_search()
copy()
copy_backward()
copy_if()
copy_n()
count()
count_if()
equal()
equal_range()
fill()
fill_n()
find()
find_end()
find_first_of()
find_if()
find_if_not()
for_each()
generate()
generate_n()
includes()
inplace_merge()
is_heap()
is_heap_until()
is_partitioned()
is_sorted()
is_sorted_until()
iter_swap()
lexicographical_compare()
lower_bound()
make_heap()
max()
max_element()
merge()
min()
min_element()
minmax()
minmax_element()
mismatch()
move()
move_backward()
next_permutation()
none_of()
nth_element()
partial_sort()
partial_sort_copy()
partition()
pop_heap()
prev_permutation()
push_heap()
random_shuffle()
remove()
remove_copy()
remove_copy_if()
remove_if()
replace()
<complex>

Description
The <complex> include
file defines the complex
class, which is used to
represent complex
numbers.

Classes
class complex<X>
class
complex<double>
class complex<float>
class complex<long
double>

Functions
abs()
arg()
conj()
cos()
cosh()
exp()
imag()
log()
log10()
norm()
operator==()
operator!=()
operator<<()
operator>>()
operator+()
operator-()
operator*()
operator/()
polar()
pow()
real()
sin()
sinh()
sqrt()
tan()
tanh()

<deque>

Description
The <deque> header
file defines the deque
class, which is a
sequence container
such that entries can be
added or removed from
the front or back
efficiently. Unlike built-
in arrays, deques grow
or shrink to
approximately the size
of the number of
elements in the deque.
Additionally, the file
defines six relational
operators and a swap
function that are friend
functions of the deque
class. In comparison to
a vector, a deque is
favored when entries
must frequently be
added and removed
from both the front and
back to the sequence.
An array is favored over
a deque for frequent
random accesses. As
the name suggests, a
deque is primarily for
creating queues.

Classes
class deque<X, A>

Friend Functions
operator==()
operator!=()
operator<()
operator>=()
operator>()
operator<=()
swap()

<exception>

Description
The <exception>
header file defines the
exception class, which
is the base class for the
exception hierarchy.

Classes
class bad_exception
class exception

Typedefs
terminate_handler
unexpected_handler

Functions
set_terminate()
set_unexpected()
terminate()
uncaught_exception()
unexpected()

<fstream>

Description
The <fstream> header
file defines the file
stream classes for file
input and output.

Classes
basic_filebuf
basic_fstream
basic_ifstream
basic_ofstream

Typedefs
filebuf
fstream
ifstream
ofstream
wfilebuf
wfstream
wifstream
wofstream

replace_copy()
replace_copy_if()
replace_if()
reverse()
reverse_copy()
rotate()
rotate_copy()
search()
search_n()
set_difference()
set_intersection()
set_symmetric_differen
ce()
set_union()
sort()
sort_heap()
stable_partition()
stable_sort()
swap()
swap_ranges()
transform()
unique()
unique_copy()
upper_bound()

C++
Reference > STL > bitset
The <bitset> include file
defines the bitset class,
which uses a set of bits
that can used as flags.
Classes
class bitset<N>
Functions
operator|()
operator&()
operator^()
operator<<()
operator>>()

Vous aimerez peut-être aussi