这部分代码重构的要求是这样的
1、输入不用std::vector,而是用指针的形式,例如要修改
std::vector<float> XXXXXXXXX(const std::vector<float>& vPoints, int vBatchSize, int vNumPoint, float vThres);
2、整个计算过程中不使用CPoint这个类,输入数据用指针的形式来保存,例如要修改
CPoint m_Center{ 0, 0, 0 };
void __findXXXXX(std::vector<int>& voMaxVertexIndex, std::vector<int>& voMinVertexIndex, const std::vector<CPoint>& vVertexSet)
想请问各位这俩个需求是什么意思……怎么实现吗?是都换成指针,数组的方式?
谢谢