49#ifdef FOR_TRITE_TEST_PROGRAM
50#define LEQ(x,y) (*pq->leq)(x,y)
54#define LEQ(x,y) VertLeq((GLUvertex *)x, (GLUvertex *)y)
61 if (pq == NULL)
return NULL;
66 if (pq->nodes == NULL) {
72 if (pq->handles == NULL) {
78 pq->initialized =
FALSE;
82 pq->nodes[1].handle = 1;
83 pq->handles[1].key = NULL;
103 hCurr =
n[curr].handle;
111 assert(child <= pq->max);
114 if(
child > pq->size ||
LEQ(
h[hCurr].key,
h[hChild].key )) {
115 n[curr].handle = hCurr;
116 h[hCurr].node = curr;
119 n[curr].handle = hChild;
120 h[hChild].node = curr;
133 hCurr =
n[curr].handle;
136 hParent =
n[parent].handle;
137 if( parent == 0 ||
LEQ(
h[hParent].key,
h[hCurr].key )) {
138 n[curr].handle = hCurr;
139 h[hCurr].
node = curr;
142 n[curr].handle = hParent;
143 h[hParent].node = curr;
155 for( i = pq->size; i >= 1; --i ) {
158 pq->initialized =
TRUE;
169 if( (curr*2) > pq->max ) {
170 PQnode *saveNodes= pq->nodes;
177 ((pq->max + 1) *
sizeof( pq->nodes[0] )));
178 if (pq->nodes == NULL) {
179 pq->nodes = saveNodes;
185 sizeof( pq->handles[0] )));
186 if (pq->handles == NULL) {
187 pq->handles = saveHandles;
192 if( pq->freeList == 0 ) {
195 free_handle = pq->freeList;
196 pq->freeList = pq->handles[free_handle].
node;
199 pq->nodes[curr].handle = free_handle;
200 pq->handles[free_handle].node = curr;
201 pq->handles[free_handle].key = keyNew;
203 if( pq->initialized ) {
206 assert(free_handle != LONG_MAX);
219 n[1].handle =
n[pq->size].handle;
220 h[
n[1].handle].node = 1;
223 h[hMin].node = pq->freeList;
226 if( -- pq->size > 0 ) {
240 assert( hCurr >= 1 && hCurr <= pq->max &&
h[hCurr].key != NULL );
242 curr =
h[hCurr].node;
243 n[curr].handle =
n[pq->size].handle;
244 h[
n[curr].handle].node = curr;
246 if( curr <= -- pq->
size ) {
247 if( curr <= 1 ||
LEQ(
h[
n[curr>>1].handle].key,
h[
n[curr].handle].key )) {
254 h[hCurr].node = pq->freeList;
255 pq->freeList = hCurr;
size_t size(const MatrixT &matrix)
retrieve the size of a square matrix
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t child
static void FloatUp(PriorityQHeap *pq, long curr)
static void FloatDown(PriorityQHeap *pq, long curr)
#define pqNewPriorityQ(leq)
#define pqDeletePriorityQ(pq)
#define pqDelete(pq, handle)
#define pqInsert(pq, key)