摘要: 一、STL容器核心应用 1. vector(动态数组) 特性:连续内存、随机访问O(1)、尾部操作高效 // 高性能数值计算 vector<double> processSensorData() { vector<double> readings; readings.reserve(1000); / 阅读全文
posted @ 2025-10-28 11:19 荒川之主 阅读(2) 评论(0) 推荐(0)