Changeset 22556


Ignore:
Timestamp:
03/17/18 22:41:10 (7 years ago)
Author:
Mathieu Morlighem
Message:

CHG: fixing HeapSort with ordering requested as output

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/shared/Bamg/HeapSort.h

    r16152 r22556  
    6060        c--; //the array must starts at 1 and not 0
    6161        order = new int[n];
    62         for(i=0;i<n;i++) order[i]=i+1;
     62        for(i=0;i<n;i++) order[i]=i;
     63        order--;
    6364
    6465        /*Sorting algorithm*/
     
    8182                        if  (j>r) {c[i]=crit;order[i]=pos;break;}
    8283                        if ((j<r) && (c[j] < c[j+1]))j++;
    83                         if (crit < c[j]) {c[i]=c[j];order[i]=order[j];}
    84                         else{c[i]=crit;order[i]=pos;break;}
     84                        if (crit < c[j]){
     85                                c[i]=c[j];
     86                                order[i]=order[j];
     87                        }
     88                        else{
     89                                c[i]=crit;order[i]=pos;
     90                                break;
     91                        }
    8592                }
    8693        }
Note: See TracChangeset for help on using the changeset viewer.