Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 6 个函数来自使用大量向量的信号处理工具箱。由于我的 DSP 上的一些内存问题,我需要改用数组。有没有一种简单的方法可以将向量转换为数组以及所使用的函数,即插入、push_back、擦除等?
您可以使用 c++ 向量元素存储在内存中连续的保证并使用
Type *array = &vector[0];
从向量中获取“指向数组的指针”。