C++的这些头文件都包括哪些函数

下列的这些头文件都包括哪些函数,我知道比较多,提供地址我就给分,如果整理了部分给我,加给50分,整理了很全的给我,加给100分

#include <algorithm> //STL 通用算法
#include <bitset> //STL 位集容器
#include <cctype>
#include <cerrno>
#include <clocale>
#include <cmath>
#include <complex> //复数类
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <ctime>
#include <deque> //STL 双端队列容器
#include <exception> //异常处理类
#include <fstream>
#include <functional> //STL 定义运算函数(代替运算符)
#include <limits>
#include <list> //STL 线性列表容器
#include <map> //STL 映射容器
#include <iomanip>
#include <ios> //基本输入/输出支持
#include <iosfwd> //输入/输出系统使用的前置声明
#include <iostream>
#include <istream> //基本输入流
#include <ostream> //基本输出流
#include <queue> //STL 队列容器
#include <set> //STL 集合容器
#include <sstream> //基于字符串的流
#include <stack> //STL 堆栈容器
#include <stdexcept> //标准异常类
#include <streambuf> //底层输入/输出支持
#include <string> //字符串类
#include <utility> //STL 通用模板类
#include <vector> //STL 动态数组容器
#include <cwchar>
#include <cwctype>

using namespace std;

//////////////////////////////////////////////////////////////////////////

C99 增加

#include <complex.h> //复数处理
#include <fenv.h> //浮点环境
#include <inttypes.h> //整数格式转换
#include <stdbool.h> //布尔环境
#include <stdint.h> //整型环境
#include <tgmath.h> //通用类型数学宏
#include <cassert>是为了使用断言assert
关键是我不知道到哪查,要查起码得知道有吧!

第1个回答  推荐于2016-04-06
太多了。。。
<algorithm>
adjacent_find
binary_search
checked_copy
checked_copy_backward
checked_fill_n
checked_generate_n
checked_merge
checked_remove_copy
checked_remove_copy_if
checked_replace_copy
checked_replace_copy_if
checked_reverse_copy
checked_rotate_copy
checked_set_difference
checked_set_intersection
checked_set_symmetric_difference
checked_set_union
checked_unique_copy
copy
copy_backward
count
count_if
equal
equal_range
fill
fill_n
find
find_end
find_first_of
find_if
for_each
generate
generate_n
includes
inplace_merge
iter_swap
lexicographical_compare
lower_bound
make_heap
max
max_element
merge
min
min_element
mismatch
next_permutation
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
replace_copy
replace_copy_if
replace_if
reverse
reverse_copy
rotate
rotate_copy
search
search_n
set_difference
set_intersection
set_symmetric_difference
set_union
sort
sort_heap
stable_partition
stable_sort
swap
swap_ranges
transform
unchecked_copy
unchecked_copy_backward
unchecked_fill_n
unchecked_generate_n
unchecked_merge
unchecked_remove_copy
unchecked_remove_copy_if
unchecked_replace_copy
unchecked_replace_copy_if
unchecked_reverse_copy
unchecked_rotate_copy
unchecked_set_difference
unchecked_set_intersection
unchecked_set_symmetric_difference
unchecked_set_union
unchecked_unique_copy
unique
unique_copy
upper_bound

你要这么多干嘛,也用不着。。。c++能记住5000个函数就成为绝对高手了。。。本回答被提问者采纳
第2个回答  2008-01-27
确实用不到那么多,需要的时候查查就可以了.
相似回答