有哪些C语言学习网站推荐?
- 内容介绍
- 文章标签
- 相关推荐
本文共计424个文字,预计阅读时间需要2分钟。
STL介绍
STL(Standard Template Library)是C++标准库的一部分,提供了一套丰富的模板类和函数,用于实现常见的数据结构和算法。STL主要包括以下组件:
1. 容器:如向量(vector)、列表(list)、队列(queue)等,用于存储和管理数据。
2.算法:如排序(sort)、查找(find)等,对容器中的数据进行操作。
3.迭代器:用于遍历容器中的元素。
4.适配器:用于创建特殊类型的容器。
更多信息,请访问以下链接:
- https://cplusplus.com/
- https://en.cppreference.com/- https://zh.cppreference.com/- https://www.apiref.com/cpp-zh/cpp.- gcc: https://gcc.gnu.org/ stl介绍cplusplus.com/en.cppreference.com/w/
zh.cppreference.com/w/%E9%A6%96%E9%A1%B5
www.apiref.com/cpp-zh/cpp.html
gcc/libstdc-v3 at master · gcc-mirror/gcc · GitHub
Cpp insight:
C Insights
Compiler explorer
godbolt.org/
C core guidelines
isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Ro-symmetric
GNU/gcc
ftp.gnu.org/pub/pub/gnu/gcc/
minGW:
github.com/niXman/mingw-builds-binaries/releases
在线编译
ideone.com/
wandbox.org/
这个编译器支持boost库而且对C编译器的更新会快。
GDB online Debugger | Compiler - Code, Compile, Run, Debug online C, C
可以gdb调试支持c17(可以参考blog.csdn.net/hyb612/article/details/83588884)
codepad.org/
对于c中一些未定义行为会给出警告提示(c求值顺序等)
Compiler Explorer (c汇编)
C Build Benchmarks
[性能]
C Concurrency in Action 2th edition
github.com/xiaoweiChen/CPP-Concurrency-In-Action-2ed-2019
Modern C Tutorial: C11/14/17/20 On the Fly
github.com/changkun/modern-cpp-tutorial
Effective-Modern-Cpp
github.com/BartVandewoestyne/Effective-Modern-Cpp
本文共计424个文字,预计阅读时间需要2分钟。
STL介绍
STL(Standard Template Library)是C++标准库的一部分,提供了一套丰富的模板类和函数,用于实现常见的数据结构和算法。STL主要包括以下组件:
1. 容器:如向量(vector)、列表(list)、队列(queue)等,用于存储和管理数据。
2.算法:如排序(sort)、查找(find)等,对容器中的数据进行操作。
3.迭代器:用于遍历容器中的元素。
4.适配器:用于创建特殊类型的容器。
更多信息,请访问以下链接:
- https://cplusplus.com/
- https://en.cppreference.com/- https://zh.cppreference.com/- https://www.apiref.com/cpp-zh/cpp.- gcc: https://gcc.gnu.org/ stl介绍cplusplus.com/en.cppreference.com/w/
zh.cppreference.com/w/%E9%A6%96%E9%A1%B5
www.apiref.com/cpp-zh/cpp.html
gcc/libstdc-v3 at master · gcc-mirror/gcc · GitHub
Cpp insight:
C Insights
Compiler explorer
godbolt.org/
C core guidelines
isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Ro-symmetric
GNU/gcc
ftp.gnu.org/pub/pub/gnu/gcc/
minGW:
github.com/niXman/mingw-builds-binaries/releases
在线编译
ideone.com/
wandbox.org/
这个编译器支持boost库而且对C编译器的更新会快。
GDB online Debugger | Compiler - Code, Compile, Run, Debug online C, C
可以gdb调试支持c17(可以参考blog.csdn.net/hyb612/article/details/83588884)
codepad.org/
对于c中一些未定义行为会给出警告提示(c求值顺序等)
Compiler Explorer (c汇编)
C Build Benchmarks
[性能]
C Concurrency in Action 2th edition
github.com/xiaoweiChen/CPP-Concurrency-In-Action-2ed-2019
Modern C Tutorial: C11/14/17/20 On the Fly
github.com/changkun/modern-cpp-tutorial
Effective-Modern-Cpp
github.com/BartVandewoestyne/Effective-Modern-Cpp

