上一页 1 ··· 262 263 264 265 266 267 268 269 270 ··· 345 下一页
摘要: STL 提供了大量操作容器的算法,这些算法大致可以分为:排序、搜索、集合运算、数值处理和拷贝等,这些算法的实现是采用函数模板来实现的... 阅读全文
posted @ 2022-08-19 22:47 luoganttcc 阅读(19) 评论(0) 推荐(0)
摘要: 在 C++ 中,输入输出数据的传送过程称为流。一个流就是一个字节序列,对流可以进行读或写操作。 输入输出类层次可以分为输入输出流类层... 阅读全文
posted @ 2022-08-19 22:47 luoganttcc 阅读(34) 评论(0) 推荐(0)
摘要: 程序设计过程中,不可避免地要进行输入与输出操作。前面章节列举的示例程序中,我们通常都会引入头文件,因为该头文件系统声明了输入输出类的... 阅读全文
posted @ 2022-08-19 22:47 luoganttcc 阅读(39) 评论(0) 推荐(0)
摘要: #includeusing namespace std;int main(int argc, char const *argv[])... 阅读全文
posted @ 2022-08-19 22:47 luoganttcc 阅读(23) 评论(0) 推荐(0)
摘要: 通过前面的讲解,我们知道结构体(Struct)是一种构造类型或复杂类型,它可以包含多个类型不同的成员。在C语言中,还有另外一种和结构... 阅读全文
posted @ 2022-08-19 22:47 luoganttcc 阅读(82) 评论(0) 推荐(0)
摘要: #include #include #include using namespace std;int main(){ list... 阅读全文
posted @ 2022-08-19 22:47 luoganttcc 阅读(10) 评论(0) 推荐(0)
摘要: #include #include using namespace std;int main(){ deque num; ... 阅读全文
posted @ 2022-08-19 22:47 luoganttcc 阅读(9) 评论(0) 推荐(0)
摘要: 重载操作符不能改变操作符的优先级和语法特性。例如上一节复数类中的加法操作符重载函数,重载后加法的优先级仍然保持不变,重载后仍然为二元... 阅读全文
posted @ 2022-08-19 22:47 luoganttcc 阅读(75) 评论(0) 推荐(0)
摘要: #include using namespace std;class complex{public: complex(); ... 阅读全文
posted @ 2022-08-19 22:47 luoganttcc 阅读(27) 评论(0) 推荐(0)
摘要: 我们以 vector、deque 和 list 为例介绍基本序列式容器,先来看一个关于 vector 容器的例子。 #include... 阅读全文
posted @ 2022-08-19 22:47 luoganttcc 阅读(30) 评论(0) 推荐(0)
上一页 1 ··· 262 263 264 265 266 267 268 269 270 ··· 345 下一页