Suppose I have vector of components (each component is a vector of floats)
vector<vector<float> > components
and I have a vector of data (each data is a vector of floats of same size as component)
vector< vector<float> > data
and the labels associated this data
vector<string> labels
(here I mean label[i] is the label of data[i]). I also have a distance function that return the distance between two vectors
float distance(vector<float> v1, vector<float> v2);
I want to give a label to each components according to the most occurring label among data associated to this component; i.e. something as following:
for each data d from data
{
let c the nearest component from d according to distance.
associate the label of d to c.
}
for each component c
{
definitely give to c the label that occur the most among labels associated to it
// example if labels {l1,l2,l1,l2,l1,l1,l1,l8,l1} were associated to c, then its label should be l1
}
The final result that should be returned is a vector of labelled components (pairs of <component,label>) described as:
vector< pair< vector<float>, string > > labeledComponents.
What is the simple and quick way to do that in C++ ?