template functions for sorting
Definition in file sorttpl.c.
#include "scip/def.h"
Go to the source code of this file.
Macros | |
#define | SORTTPL_SHELLSORTMAX 25 |
#define | SORTTPL_MINSIZENINTHER 729 /* minimum input size to use ninther (median of nine) for pivot selection */ |
#define | SORTTPL_HASFIELD1(x) |
#define | SORTTPL_HASFIELD1PAR(x) |
#define | SORTTPL_HASFIELD2(x) |
#define | SORTTPL_HASFIELD2PAR(x) |
#define | SORTTPL_HASFIELD3(x) |
#define | SORTTPL_HASFIELD3PAR(x) |
#define | SORTTPL_HASFIELD4(x) |
#define | SORTTPL_HASFIELD4PAR(x) |
#define | SORTTPL_HASFIELD5(x) |
#define | SORTTPL_HASFIELD5PAR(x) |
#define | SORTTPL_HASFIELD6(x) |
#define | SORTTPL_HASFIELD6PAR(x) |
#define | SORTTPL_HASPTRCOMP(x) |
#define | SORTTPL_HASPTRCOMPPAR(x) |
#define | SORTTPL_HASINDCOMP(x) |
#define | SORTTPL_HASINDCOMPPAR(x) |
#define | SORTTPL_EXPANDNAME(method, methodname) method ## methodname |
#define | SORTTPL_NAME(method, methodname) SORTTPL_EXPANDNAME(method, methodname) |
#define | SORTTPL_CMP(x, y) ((x) - (y)) |
#define | SORTTPL_ISBETTER(x, y) (SORTTPL_CMP(x,y) < 0) |
#define | SORTTPL_ISWORSE(x, y) (SORTTPL_CMP(x,y) > 0) |
#define | SORTTPL_SWAP(T, x, y) |
#define | EXCH(x, y) |
Functions | |
static void | SORTTPL_NAME (sorttpl_shellSort, SORTTPL_NAMEEXT) |
static int | SORTTPL_NAME (sorttpl_medianThree, SORTTPL_NAMEEXT) |
static int | SORTTPL_NAME (sorttpl_selectPivotIndex, SORTTPL_NAMEEXT) |
static void | SORTTPL_NAME (sorttpl_qSort, SORTTPL_NAMEEXT) |
static void | SORTTPL_NAME (sorttpl_checkSort, SORTTPL_NAMEEXT) |
void | SORTTPL_NAME (SCIPsort, SORTTPL_NAMEEXT) |
void | SORTTPL_NAME (SCIPsortedvecInsert, SORTTPL_NAMEEXT) |
void | SORTTPL_NAME (SCIPsortedvecDelPos, SORTTPL_NAMEEXT) |
SCIP_Bool | SORTTPL_NAME (SCIPsortedvecFind, SORTTPL_NAMEEXT) |
void | SORTTPL_NAME (SCIPselectWeighted, SORTTPL_NAMEEXT) |
void | SORTTPL_NAME (SCIPselect, SORTTPL_NAMEEXT) |
#define SORTTPL_SHELLSORTMAX 25 |
Definition at line 38 of file sorttpl.c.
Referenced by SORTTPL_NAME().
#define SORTTPL_MINSIZENINTHER 729 /* minimum input size to use ninther (median of nine) for pivot selection */ |
Definition at line 39 of file sorttpl.c.
Referenced by SORTTPL_NAME().
#define SORTTPL_HASFIELD1 | ( | x | ) |
Definition at line 60 of file sorttpl.c.
Referenced by SORTTPL_NAME().
#define SORTTPL_HASFIELD1PAR | ( | x | ) |
Definition at line 61 of file sorttpl.c.
Referenced by SORTTPL_NAME().
#define SORTTPL_HASFIELD2 | ( | x | ) |
Definition at line 67 of file sorttpl.c.
Referenced by SORTTPL_NAME().
#define SORTTPL_HASFIELD2PAR | ( | x | ) |
Definition at line 68 of file sorttpl.c.
Referenced by SORTTPL_NAME().
#define SORTTPL_HASFIELD3 | ( | x | ) |
Definition at line 74 of file sorttpl.c.
Referenced by SORTTPL_NAME().
#define SORTTPL_HASFIELD3PAR | ( | x | ) |
Definition at line 75 of file sorttpl.c.
Referenced by SORTTPL_NAME().
#define SORTTPL_HASFIELD4 | ( | x | ) |
Definition at line 81 of file sorttpl.c.
Referenced by SORTTPL_NAME().
#define SORTTPL_HASFIELD4PAR | ( | x | ) |
Definition at line 82 of file sorttpl.c.
Referenced by SORTTPL_NAME().
#define SORTTPL_HASFIELD5 | ( | x | ) |
Definition at line 88 of file sorttpl.c.
Referenced by SORTTPL_NAME().
#define SORTTPL_HASFIELD5PAR | ( | x | ) |
Definition at line 89 of file sorttpl.c.
Referenced by SORTTPL_NAME().
#define SORTTPL_HASFIELD6 | ( | x | ) |
Definition at line 95 of file sorttpl.c.
Referenced by SORTTPL_NAME().
#define SORTTPL_HASFIELD6PAR | ( | x | ) |
Definition at line 96 of file sorttpl.c.
Referenced by SORTTPL_NAME().
#define SORTTPL_HASPTRCOMPPAR | ( | x | ) |
Definition at line 103 of file sorttpl.c.
Referenced by SORTTPL_NAME().
#define SORTTPL_HASINDCOMPPAR | ( | x | ) |
Definition at line 110 of file sorttpl.c.
Referenced by SORTTPL_NAME().
#define SORTTPL_EXPANDNAME | ( | method, | |
methodname | |||
) | method ## methodname |
#define SORTTPL_NAME | ( | method, | |
methodname | |||
) | SORTTPL_EXPANDNAME(method, methodname) |
Definition at line 120 of file sorttpl.c.
Referenced by SORTTPL_NAME().
#define SORTTPL_CMP | ( | x, | |
y | |||
) | ((x) - (y)) |
Definition at line 141 of file sorttpl.c.
Referenced by SORTTPL_NAME().
#define SORTTPL_ISBETTER | ( | x, | |
y | |||
) | (SORTTPL_CMP(x,y) < 0) |
Definition at line 146 of file sorttpl.c.
Referenced by SORTTPL_NAME().
#define SORTTPL_ISWORSE | ( | x, | |
y | |||
) | (SORTTPL_CMP(x,y) > 0) |
Definition at line 147 of file sorttpl.c.
Referenced by SORTTPL_NAME().
#define SORTTPL_SWAP | ( | T, | |
x, | |||
y | |||
) |
Definition at line 150 of file sorttpl.c.
Referenced by SORTTPL_NAME().
#define EXCH | ( | x, | |
y | |||
) |
macro that performs an exchange in the weighted selection algorithm, including weights
Definition at line 773 of file sorttpl.c.
Referenced by SORTTPL_NAME().
|
static |
shell-sort an array of data elements; use it only for arrays smaller than 25 entries ending index
Definition at line 160 of file sorttpl.c.
References SCIP_Real, SORTTPL_FIELD1TYPE, SORTTPL_FIELD2TYPE, SORTTPL_FIELD3TYPE, SORTTPL_FIELD4TYPE, SORTTPL_FIELD5TYPE, SORTTPL_HASFIELD1, SORTTPL_HASFIELD2, SORTTPL_HASFIELD3, SORTTPL_HASFIELD4, SORTTPL_HASFIELD5, SORTTPL_HASFIELD6, SORTTPL_ISBETTER, and SORTTPL_KEYTYPE.
|
static |
returns the index a,b, or c of the median element among key[a], key[b], and key[c] third index of the array to consider
Definition at line 236 of file sorttpl.c.
References SORTTPL_ISBETTER.
|
static |
last index of the key array to consider
Definition at line 287 of file sorttpl.c.
References SORTTPL_HASINDCOMPPAR, SORTTPL_HASPTRCOMPPAR, SORTTPL_MINSIZENINTHER, SORTTPL_NAME, SORTTPL_NAMEEXT, and SORTTPL_SHELLSORTMAX.
|
static |
quick-sort an array of pointers; pivot is the medial element TRUE, if quick-sort should start with with key[lo] < pivot <= key[hi], key[lo] <= pivot < key[hi] otherwise
Definition at line 360 of file sorttpl.c.
References SORTTPL_FIELD1TYPE, SORTTPL_FIELD2TYPE, SORTTPL_FIELD3TYPE, SORTTPL_FIELD4TYPE, SORTTPL_FIELD5TYPE, SORTTPL_HASFIELD1, SORTTPL_HASFIELD1PAR, SORTTPL_HASFIELD2, SORTTPL_HASFIELD2PAR, SORTTPL_HASFIELD3, SORTTPL_HASFIELD3PAR, SORTTPL_HASFIELD4, SORTTPL_HASFIELD4PAR, SORTTPL_HASFIELD5, SORTTPL_HASFIELD5PAR, SORTTPL_HASFIELD6, SORTTPL_HASFIELD6PAR, SORTTPL_HASINDCOMPPAR, SORTTPL_HASPTRCOMPPAR, SORTTPL_ISBETTER, SORTTPL_ISWORSE, SORTTPL_KEYTYPE, SORTTPL_NAME, SORTTPL_NAMEEXT, SORTTPL_SHELLSORTMAX, and SORTTPL_SWAP.
|
static |
verifies that an array is indeed sorted data element comparator data element comparator pointer to data field that is given to the external compare method length of the array
Definition at line 545 of file sorttpl.c.
References SORTTPL_ISBETTER.
void SORTTPL_NAME | ( | SCIPsort | , |
SORTTPL_NAMEEXT | |||
) |
SCIPsort...(): sorts array 'key' and performs the same permutations on the additional 'field' arrays additional field that should be sorted in the same way additional field that should be sorted in the same way additional field that should be sorted in the same way additional field that should be sorted in the same way additional field that should be sorted in the same way additional field that should be sorted in the same way data element comparator data element comparator pointer to data field that is given to the external compare method length of arrays
Definition at line 564 of file sorttpl.c.
References SORTTPL_HASFIELD1PAR, SORTTPL_HASFIELD2PAR, SORTTPL_HASFIELD3PAR, SORTTPL_HASFIELD4PAR, SORTTPL_HASFIELD5PAR, SORTTPL_HASFIELD6PAR, SORTTPL_HASINDCOMPPAR, SORTTPL_HASPTRCOMPPAR, SORTTPL_NAME, SORTTPL_NAMEEXT, SORTTPL_SHELLSORTMAX, and TRUE.
void SORTTPL_NAME | ( | SCIPsortedvecInsert | , |
SORTTPL_NAMEEXT | |||
) |
SCIPsortedvecInsert...(): adds an element to a sorted multi-vector; This method does not do any memory allocation! It assumes that the arrays are large enough to store the additional values.pointer to store the insert position, or NULL
Definition at line 629 of file sorttpl.c.
References SORTTPL_HASFIELD1, SORTTPL_HASFIELD2, SORTTPL_HASFIELD3, SORTTPL_HASFIELD4, SORTTPL_HASFIELD5, SORTTPL_HASFIELD6, and SORTTPL_ISBETTER.
void SORTTPL_NAME | ( | SCIPsortedvecDelPos | , |
SORTTPL_NAMEEXT | |||
) |
SCIPsortedvecDelPos...(): deletes an element at a given position from a sorted multi-vector pointer to length of arrays (will be decreased by 1)
Definition at line 680 of file sorttpl.c.
References SORTTPL_FIELD1TYPE, SORTTPL_HASFIELD1, SORTTPL_HASFIELD2, SORTTPL_HASFIELD3, SORTTPL_HASFIELD4, SORTTPL_HASFIELD5, and SORTTPL_HASFIELD6.
SCIP_Bool SORTTPL_NAME | ( | SCIPsortedvecFind | , |
SORTTPL_NAMEEXT | |||
) |
SCIPsortedvecFind...(): Finds the position at which 'val' is located in the sorted vector by binary search. If the element exists, the method returns TRUE and stores the position of the element in '*pos'. If the element does not exist, the method returns FALSE and stores the position of the element that follows 'val' in the ordering in '*pos', i.e., '*pos' is the position at which 'val' would be inserted. Note that if the element is not found, '*pos' may be equal to len if all existing elements are smaller than 'val'.pointer to store the insert position
Definition at line 726 of file sorttpl.c.
References FALSE, SORTTPL_ISBETTER, and TRUE.
void SORTTPL_NAME | ( | SCIPselectWeighted | , |
SORTTPL_NAMEEXT | |||
) |
partially sorts a given keys array around the weighted median w.r.t. the capacity
and permutes the additional 'field' arrays in the same way.
If no weights-array is passed, the algorithm assumes weights equal to 1.pointer to store the index of the weighted median, or NULL, if not needed
Definition at line 795 of file sorttpl.c.
References EXCH, MAX, SCIP_Real, SORTTPL_CMP, SORTTPL_HASFIELD1PAR, SORTTPL_HASFIELD2PAR, SORTTPL_HASFIELD3PAR, SORTTPL_HASFIELD4PAR, SORTTPL_HASFIELD5PAR, SORTTPL_HASFIELD6PAR, SORTTPL_HASINDCOMPPAR, SORTTPL_HASPTRCOMPPAR, SORTTPL_ISBETTER, SORTTPL_ISWORSE, SORTTPL_KEYTYPE, SORTTPL_NAME, SORTTPL_NAMEEXT, and SORTTPL_SHELLSORTMAX.
void SORTTPL_NAME | ( | SCIPselect | , |
SORTTPL_NAMEEXT | |||
) |
partially sorts a given keys array around the given index k
and permutes the additional 'field' arrays are in the same way length of arrays
Definition at line 979 of file sorttpl.c.
References SCIP_Real, SORTTPL_HASFIELD1PAR, SORTTPL_HASFIELD2PAR, SORTTPL_HASFIELD3PAR, SORTTPL_HASFIELD4PAR, SORTTPL_HASFIELD5PAR, SORTTPL_HASFIELD6PAR, SORTTPL_HASINDCOMPPAR, SORTTPL_HASPTRCOMPPAR, SORTTPL_NAME, and SORTTPL_NAMEEXT.