Commit 65d816c3 authored by lopespt's avatar lopespt

Adds efficient sort algorithm to KNearest

parent 7bc980ed
......@@ -240,20 +240,7 @@ public:
else
{
float* rp = rbuf + testidx*k;
for( j = k-1; j > 0; j-- )
{
bool swap_fl = false;
for( i = 0; i < j; i++ )
{
if( rp[i] > rp[i+1] )
{
std::swap(rp[i], rp[i+1]);
swap_fl = true;
}
}
if( !swap_fl )
break;
}
std::sort(rp, rp+k);
result = rp[0];
int prev_start = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment