随笔分类 -  Notes

学习过程中的笔记
摘要:深入理解 C++ 中的 std::list 双向链表容器,探讨其底层原理、独有优势(如头部操作、接合等)、迭代器特性,以及与 std::vector 的选择权衡。 阅读全文
posted @ 2026-01-03 23:02 略无慕艳意 阅读(88) 评论(0) 推荐(0)
摘要:深入理解 C++ 中最常用的容器 std::vector:动态数组的核心特性、内存管理、扩容机制、迭代器失效问题,以及 reserve、emplace_back 等现代化最佳实践。特别提醒 std::vector 阅读全文
posted @ 2026-01-03 23:00 略无慕艳意 阅读(723) 评论(0) 推荐(3)
摘要:Notes of Effective CMakeThe core philosophy of modern CMake revolves around treating build scripts as code, shifting from outdated directory-level commands to a more maintainable and scalable target-centric paradigm based on targets and properties. In this model, developers define executables and libraries as self-contained targets using add_executable or add_library, and then precisely manage their build specifications and usage requirements through target_* commands with PRIVATE, PUBLIC, and INTERFACE keywords to con 阅读全文
posted @ 2025-08-08 23:17 略无慕艳意 阅读(59) 评论(1) 推荐(0)
摘要:带宽是一个多领域通用的概念,核心含义为特定时间段内信道传输数据的总能力。其具体定义因应用场景而异,但始终与"容量"和"速率"相关。在数字领域体现为数据传输速率,在模拟领域则表现为信号频率范围。 阅读全文
posted @ 2025-07-28 23:14 略无慕艳意 阅读(675) 评论(0) 推荐(0)