show/hide this revision's text 10 added 31 characters in body

EDIT: the benchmark results of the algorithms considered so far

For the protocol and short description of algorithms see below. First value is mean time (seconds) over 200 different sequences and second value is stdDev.

HeapSort     : 2.287 0.2097QuickSort    : 2.297 0.2713QuickMedian1 : 0.967 0.3487HeapMedian1  : 0.858 0.0908NthElement   : 0.616 0.1866QuickMedian2 : 1.178 0.4067HeapMedian2  : 0.597 0.1050HeapMedian3  : 0.015 0.0049 <-- best

Protocol: generate 27 random floats using random bits obtained from rand(). Apply each algorithm 5 million times in a row (including prior array copy) and compute average and stdDev over 200 random sequences. C++ source code compiled with icc -S -O3 and run on Intel E8400 with 8GB DDR3.

Algorithms:

HeapSort : full sort of sequence using heap sort and pick middle value. Naive implementation using subscript access.

QuickSort: full in place sort of sequence using quick sort and pick middle value. Naive implementation using subscript access.

QuickMedian1: quick select algorithm with swapping. Naive implementation using subscript access.

HeapMedian1: in place balanced heap method with prior swapping. Naive implementation using subscript access.

NthElement : uses the nth_element STL algorithm. Data is copied moved into the vector using memcpy( vct.data(), rndVal, ... );

QuickMedian2: uses quick select algorithm with pointers and copy in two buffers to avoid swaping. Based on proposal of MSalters.

HeapMedian2 : variant of my invented algorithm using dual heaps with shared heads. Left heap has biggest value as head, right has smallest value as head. Initialize with first value a separate answer as common head and first median value guess. Add subsequent values to left heap if smaller than head, otherwise to right heap, until one of the heap is full. It is full when it contains 14 values. Then consider only the full heap. If its the right heap, for all values bigger than the head, pop head and insert value. Ignore all other valuessuggested by Davy Landman. If its the left heap, See below for all values smaller than the head, pop head and insert it in heap. Ignore all other values. When all values have been proceeded, the common head is the median value. It uses integer index into array. The version using pointers (64bit) appeared to be nearly twice slower (~1s).

HeapMedian3 : same algorithm as HeapMedian2 but optimized. It uses unsigned char index, avoids value swapping and various other little things. The mean and stdDev values are computed over 1000 random sequences. For nth_element I measured 0.508s and a stdDev of 0.159537 with the same 1000 random sequences. HeapMedian3 is thus 33 time faster than the nth_element stl function. Each returned median value is checked against the median value returned answer by heapSort and they all match. I doubt a method using hash may be significantly fasterchmike.

Source code of HeapMedian3

// return the median value in a vector of 27 floats pointed to by afloat heapMedian3( float *a )   float left[14], right[14], median, *p;   unsigned char nLeft, nRight;   // pick first value as median candidate   p = a;   median = *p++;   nLeft = nRight = 1;   for(;;)       // get next value       float val = *p++;       // if value is smaller than median, append to left heap       if( val < median )           // move biggest value to the heap top           unsigned char child = nLeft++, parent = (child - 1) / 2;           while( parent && val > left[parent] )               left[child] = left[parent];               child = parent;               parent = (parent - 1) / 2;           left[child] = val;           // if left heap is full           if( nLeft == 14 )               // for each remaining value               for( unsigned char nVal = 27 - (p - a); nVal; --nVal )                   // get next value                   val = *p++;                   // if value is to be inserted in the left heap                   if( val < median )                       child = left[2] > left[1] ? 2 : 1;                       if( val >= left[child] )                           median = val;                           median = left[child];                           parent = child;                           child = parent*2 + 1;                           while( child < 14 )                               if( child < 13 && left[child+1] > left[child] )                                   ++child;                               if( val >= left[child] )                                   break;                               left[parent] = left[child];                               parent = child;                               child = parent*2 + 1;                           left[parent] = val;               return median;       // else append to right heap           // move smallest value to the heap top           unsigned char child = nRight++, parent = (child - 1) / 2;           while( parent && val < right[parent] )               right[child] = right[parent];               child = parent;               parent = (parent - 1) / 2;           right[child] = val;           // if right heap is full           if( nRight == 14 )               // for each remaining value               for( unsigned char nVal = 27 - (p - a); nVal; --nVal )                   // get next value                   val = *p++;                   // if value is to be inserted in the right heap                   if( val > median )                       child = right[2] < right[1] ? 2 : 1;                       if( val <= right[child] )                           median = val;                           median = right[child];                           parent = child;                           child = parent*2 + 1;                           while( child < 14 )                               if( child < 13 && right[child+1] < right[child] )                                   ++child;                               if( val <= right[child] )                                   break;                               right[parent] = right[child];                               parent = child;                               child = parent*2 + 1;                           right[parent] = val;               return median;
        
show/hide this revision's text 9 added 8 characters in body; [made Community Wiki]

This is the well know select algorithm. see http://en.wikipedia.org/wiki/Selection%5Falgorithm.

I need it to find the median value of a set of 3x3x3 voxel values. Since the volume is made of a billion voxels and the algorithm is recursive, it better be a little bit fast. In general it can be expected that values are relatively close.

The fastest known algorithm I have tried out so far uses the quick sort partition function. I would like to know if there is a faster one.

I've "invented" a 20% faster one using two heaps, but expected an even faster one using a hash. Before implementing this, I'd like to know if a blitz fast solution already exist out there.

The fact that I'm using floats shouldn't matter since they can be considered as unsigned integer after inverting the sign bit. The order will be preserved.

EDIT: the benchmark results of the algorithms considered so far

For the protocol and short description of algorithms see below. First value is mean time (seconds) over 200 different sequences and second value is stdDev.

HeapSort     : 2.287 0.2097
QuickSort    : 2.297 0.2713
QuickMedian1 : 0.967 0.3487
HeapMedian1  : 0.858 0.0908
NthElement   : 0.616 0.1866
QuickMedian2 : 1.178 0.4067
HeapMedian2  : 0.597 0.1050
HeapMedian3  : 0.015 0.0049 <-- best

Protocol: generate 27 random floats using random bits obtained from rand(). Apply each algorithm 5 million times in a row (including prior array copy) and compute average and stdDev over 200 random sequences. C++ code compiled with icc -S -O3 and run on Intel E8400 with 8GB DDR3.

Algorithms:

HeapSort : full sort of sequence using heap sort and pick middle value. Naive implementation using subscript access.

QuickSort: full in place sort of sequence using quick sort and pick middle value. Naive implementation using subscript access.

QuickMedian1: quick select algorithm with swapping. Naive implementation using subscript access.

HeapMedian1: in place balanced heap method with prior swapping. Naive implementation using subscript access.

NthElement : uses the nth_element STL algorithm. Data is copied into the vector using memcpy( vct.data(), rndVal, ... );

QuickMedian2: uses quick select algorithm with pointers and copy in two buffers to avoid swaping. Based on proposal of MSalters.

HeapMedian2 : variant of my invented algorithm using dual heaps with shared heads. Left heap has biggest value as head, right has smallest value as head. Initialize with first value as common head and first median value guess. Add subsequent values to left heap if smaller than head, otherwise to right heap, until one of the heap is full. It is full when it contains 14 values. Then consider only the full heap. If its the right heap, for all values bigger than the head, pop head and insert value. Ignore all other values. If its the left heap, for all values smaller than the head, pop head and insert it in heap. Ignore all other values. When all values have been proceeded, the common head is the median value. It uses integer index into array. The version using pointers (64bit) appeared to be nearly twice slower (~1s).

HeapMedian3 : same algorithm as HeapMedian2 but optimized. It uses unsigned char index, avoids value swapping and various other little things. The mean and stdDev values are computed over 1000 random sequences. For nth_element I measured 0.508s and a stdDev of 0.159537 with the same 1000 random sequences. HeapMedian3 is thus 37 33 time faster than the nth_element stl function. Each returned median value is checked against the median value returned by heapSort and they all match. I doubt a method using hash may be significantly faster.


Source code of HeapMedian3

// return the median value in a vector of 27 floats pointed to by a
float heapMedian3( float *a )
{
   float left[14], right[14], median, *p;
   unsigned char nLeft, nRight;

   // pick first value as median candidate
   p = a;
   median = *p++;
   nLeft = nRight = 1;

   for(;;)
   {
       // get next value
       float val = *p++;

       // if value is smaller than median, append to left heap
       if( val < median )
       {
           // move biggest value to the heap top
           unsigned char child = nLeft++, parent = (child - 1) / 2;
           while( parent && val > left[parent] )
           {
               left[child] = left[parent];
               child = parent;
               parent = (parent - 1) / 2;
           }
           left[child] = val;

           // if left heap is full
           if( nLeft == 14 )
           {
               // for each remaining value
               for( unsigned char nVal = 27 - (p - a); nVal; --nVal )
               {
                   // get next value
                   val = *p++;

                   // if value is to be inserted in the left heap
                   if( val < median )
                   {
                       child = left[2] > left[1] ? 2 : 1;
                       if( val >= left[child] )
                           median = val;
                       else
                       {
                           median = left[child];
                           parent = child;
                           child = parent*2 + 1;
                           while( child < 14 )
                           {
                               if( child < 13 && left[child+1] > left[child] )
                                   ++child;
                               if( val >= left[child] )
                                   break;
                               left[parent] = left[child];
                               parent = child;
                               child = parent*2 + 1;
                           }
                           left[parent] = val;
                       }
                   }
               }
               return median;
           }
       }

       // else append to right heap
       else
       {
           // move smallest value to the heap top
           unsigned char child = nRight++, parent = (child - 1) / 2;
           while( parent && val < right[parent] )
           {
               right[child] = right[parent];
               child = parent;
               parent = (parent - 1) / 2;
           }
           right[child] = val;

           // if right heap is full
           if( nRight == 14 )
           {
               // for each remaining value
               for( unsigned char nVal = 27 - (p - a); nVal; --nVal )
               {
                   // get next value
                   val = *p++;

                   // if value is to be inserted in the right heap
                   if( val > median )
                   {
                       child = right[2] < right[1] ? 2 : 1;
                       if( val <= right[child] )
                           median = val;
                       else
                       {
                           median = right[child];
                           parent = child;
                           child = parent*2 + 1;
                           while( child < 14 )
                           {
                               if( child < 13 && right[child+1] < right[child] )
                                   ++child;
                               if( val <= right[child] )
                                   break;
                               right[parent] = right[child];
                               parent = child;
                               child = parent*2 + 1;
                           }
                           right[parent] = val;
                       }
                   }
               }
               return median;
           }
       }
   }
}
show/hide this revision's text 8 Added heapMedian3 bench result and source code

HeapMedian3 : 0.015 0.0049

HeapMedian3 : same algorithm as HeapMedian2 but optimized. It uses unsigned char index, avoids value swapping and various other little things. The mean and stdDev values are computed over 1000 random sequences. For nth_element I measured 0.508s and a stdDev of 0.159537 with the same 1000 random sequences. HeapMedian3 is thus 37 time faster than the nth_element stl function. Each returned median value is checked against the median value returned by heapSort and they all match. I doubt a method using hash may be significantly faster.

Source code of HeapMedian3

// return the median value in a vector of 27 floats pointed to by afloat heapMedian3( float *a )   float left[14], right[14], median, *p;   unsigned char nLeft, nRight;   // pick first value as median candidate   p = a;   median = *p++;   nLeft = nRight = 1;   for(;;)       // get next value       float val = *p++;       // if value is smaller than median, append to left heap       if( val < median )           // move biggest value to the heap top           unsigned char child = nLeft++, parent = (child - 1) / 2;           while( parent && val > left[parent] )               left[child] = left[parent];               child = parent;               parent = (parent - 1) / 2;           left[child] = val;           // if left heap is full           if( nLeft == 14 )               // for each remaining value               for( unsigned char nVal = 27 - (p - a); nVal; --nVal )                   // get next value                   val = *p++;                   // if value is to be inserted in the left heap                   if( val < median )                       child = left[2] > left[1] ? 2 : 1;                       if( val >= left[child] )                           median = val;                           median = left[child];                           parent = child;                           child = parent*2 + 1;                           while( child < 14 )                               if( child < 13 && left[child+1] > left[child] )                                   ++child;                               if( val >= left[child] )                                   break;                               left[parent] = left[child];                               parent = child;                               child = parent*2 + 1;                           left[parent] = val;               return median;       // else append to right heap           // move smallest value to the heap top           unsigned char child = nRight++, parent = (child - 1) / 2;           while( parent && val < right[parent] )               right[child] = right[parent];               child = parent;               parent = (parent - 1) / 2;           right[child] = val;           // if right heap is full           if( nRight == 14 )               // for each remaining value               for( unsigned char nVal = 27 - (p - a); nVal; --nVal )                   // get next value                   val = *p++;                   // if value is to be inserted in the right heap                   if( val > median )                       child = right[2] < right[1] ? 2 : 1;                       if( val <= right[child] )                           median = val;                           median = right[child];                           parent = child;                           child = parent*2 + 1;                           while( child < 14 )                               if( child < 13 && right[child+1] < right[child] )                                   ++child;                               if( val <= right[child] )                                   break;                               right[parent] = right[child];                               parent = child;                               child = parent*2 + 1;                           right[parent] = val;               return median;
        
show/hide this revision's text 7 added 110 characters in body
show/hide this revision's text 6 added 753 characters in body
show/hide this revision's text 5 added 1 characters in body
show/hide this revision's text 4 added 10 characters in body
show/hide this revision's text 3 added 157 characters in body
show/hide this revision's text 2 added 16 characters in body
show/hide this revision's text 1