我写了下面的代码
#include <vector>
#include <cmath>
#include <cfloat>
#include <iostream>
#include <algorithm>
using namespace std;
vector< vector<double> > merge_sort(vector< vector<double> >& source, vector< vector<double> >& result){
}
int main(){
vector < vector<double> >test;
vector < vector<double> >temp;
merge_sort(test, temp);
}
除了我的例外,程序关闭了,我只是得到了不好的分配期望,我不知道为什么,我什至没有访问任何元素。
请告诉我如何解决它。
提前谢谢。