「mystruct」を距離変数でソートしたいのですが、これを行う最も速い方法は何ですか?
struct MyStruct {
int scale;
bool pass;
float distance;
};
vector<MyStruct> mystruct;
...
sort (mystruct.begin(), mystruct.begin() + mystruct.size());
//this doesn't work since is trying to sort by "MyStruct" and not by a number
もし私が持っていたら
vector<float> myfloat;
...
sort (myfloat.begin(), myfloat.begin() + myfloat.size());
その後、完全に機能します。