Changeset 22556
- Timestamp:
- 03/17/18 22:41:10 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/shared/Bamg/HeapSort.h
r16152 r22556 60 60 c--; //the array must starts at 1 and not 0 61 61 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--; 63 64 64 65 /*Sorting algorithm*/ … … 81 82 if (j>r) {c[i]=crit;order[i]=pos;break;} 82 83 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 } 85 92 } 86 93 }
Note:
See TracChangeset
for help on using the changeset viewer.