{"id":21302849,"url":"https://github.com/solerho/cpp-primer-5e-notes","last_synced_at":"2026-03-19T19:47:00.661Z","repository":{"id":128251855,"uuid":"369946276","full_name":"SolerHo/cpp-primer-5e-notes","owner":"SolerHo","description":"记录C++  Primer 书籍学习笔记","archived":false,"fork":false,"pushed_at":"2023-07-03T16:18:45.000Z","size":4839,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-05T18:02:52.102Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/SolerHo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-05-23T02:40:34.000Z","updated_at":"2023-11-20T15:06:26.000Z","dependencies_parsed_at":null,"dependency_job_id":"e3828120-a7fb-47f0-ac56-b8d0131767fa","html_url":"https://github.com/SolerHo/cpp-primer-5e-notes","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/SolerHo/cpp-primer-5e-notes","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SolerHo%2Fcpp-primer-5e-notes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SolerHo%2Fcpp-primer-5e-notes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SolerHo%2Fcpp-primer-5e-notes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SolerHo%2Fcpp-primer-5e-notes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SolerHo","download_url":"https://codeload.github.com/SolerHo/cpp-primer-5e-notes/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SolerHo%2Fcpp-primer-5e-notes/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29387694,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-12T22:07:52.078Z","status":"ssl_error","status_checked_at":"2026-02-12T22:07:49.026Z","response_time":55,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-21T15:58:01.068Z","updated_at":"2026-02-13T00:02:16.906Z","avatar_url":"https://github.com/SolerHo.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# cpp-primer-notes\n\n## 简介\n\n《C++ Primer 中文版 第5版》书籍学习笔记，内容包括：**笔记** 和 **练习题**。如有错误请指出。\n\n## 环境\n\n- ***系统***：`Ubuntu 20.04`\n- ***IDE***：` Visual Studio Code` ————\u003e remote development ssh连接 Ubuntu20.04 开发\n- ***编译器***：`gcc (Ubuntu 9.4.0-1ubuntu1~20.04.1) 9.4.0`\n\n## 内容板块\n\n| Chapter                     | Title              |    Notes     |    Practice    |\n| --------------------------- | ------------------ | :----------: | :------------: |\n| 01                          | 开始               | 「[笔记]()」 | 「[练习题]()」 |\n| **第一部分 C++基础**        |                    |              |                |\n| 02                          | 变量和基本类型     | 「[笔记]()」 | 「[练习题]()」 |\n| 03                          | 字符串、向量和数组 | 「[笔记]()」 | 「[练习题]()」 |\n| 04                         | 表达式             | 「[笔记]()」 | 「[练习题]()」 |\n| 05                          | 语句               | 「[笔记]()」 | 「[练习题]()」 |\n| 06                         | 函数               | 「[笔记]()」 | 「[练习题]()」 |\n| 07                          | 类                 | 「[笔记]()」 | 「[练习题]()」 |\n| **第二部分 C++标准库**      |                    |              |                |\n| 08                          | IO库               | 「[笔记]()」 | 「[练习题]()」 |\n| 09                        | 顺序容器           | 「[笔记]()」 | 「[练习题]()」 |\n| 10                         | 泛型算法           | 「[笔记]()」 | 「[练习题]()」 |\n| 11                         | 关联容器           | 「[笔记]()」 | 「[练习题]()」  |\n| 12                          | 动态内存           | 「[笔记]()」 | 「[练习题]()」 |\n| 13                          | 拷贝控制           | 「[笔记]()」 | 「[练习题]()」 |\n| **第三部分 类设计者的工具** |                    |              |                |\n| 14                         | 重载运算与类型转换 | 「[笔记]()」 | 「[练习题]()」 |\n| 15                          | 面向对象程序设计   | 「[笔记]()」 | 「[练习题]()」 |\n| 16                          | 模板与泛型编程     | 「[笔记]()」 | 「[练习题]()」 |\n| **第四部分 高级主题**       |                    |              |                |\n| 17                          | 标准库特殊设施     | 「[笔记]()」 | 「[练习题]()」 |\n| 18                          | 用于大型程序的工具 | 「[笔记]()」 | 「[练习题]()」 |\n| 19                          | 特殊工具与技术     | 「[笔记]()」 | 「[练习题]()」 |\n| **附录 A 标准库**           |                    |              |                |\n| A.1 标准库名字和头文件      |                    | 「[笔记]()」 |                |\n| A.2 算法概览                |                    |              |                |\n|                             | 查找对象的算法     | 「[笔记]()」 |                |\n|                             | 其他只读算法       | 「[笔记]()」 |                |\n|                             | 二分搜索算法       | 「[笔记]()」 |                |\n|                             | 写容器元素的算法   | 「[笔记]()」 |                |\n|                             | 划分与排序算法     | 「[笔记]()」 |                |\n|                             | 通用重排操作       | 「[笔记]()」 |                |\n|                             | 排列算法           | 「[笔记]()」 |                |\n|                             | 有序序列的集合算法 | 「[笔记]()」 |                |\n|                             | 最小值和最大值     | 「[笔记]()」 |                |\n|                             | 数值算法           | 「[笔记]()」 |                |\n| A.3 随机数                  |                    |              |                |\n|                             | 随机数分布         | 「[笔记]()」 |                |\n|                             | 随机数引擎         | 「[笔记]()」 |                |\n\n\n\n## C++ 11中的新特性\n\n待探索更新\n\n## C++ 14 中的新特性\n\n待探索更新\n\n## 参考资料\n\n- 《C++ Primer 中文版 第5版》pdf 【[豆瓣](https://book.douban.com/subject/25708312/)】【[英文电子版](https://eprints.akakom.ac.id/55/1/c_primer_5th_edition.pdf)】\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsolerho%2Fcpp-primer-5e-notes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsolerho%2Fcpp-primer-5e-notes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsolerho%2Fcpp-primer-5e-notes/lists"}