1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
|
/* ========================================================================== */
/* === Source/Mongoose_QPMinHeap.cpp ======================================== */
/* ========================================================================== */
/* -----------------------------------------------------------------------------
* Mongoose Graph Partitioning Library Copyright (C) 2017-2018,
* Scott P. Kolodziej, Nuri S. Yeralan, Timothy A. Davis, William W. Hager
* Mongoose is licensed under Version 3 of the GNU General Public License.
* Mongoose is also available under other licenses; contact authors for details.
* -------------------------------------------------------------------------- */
/* ========================================================================== */
/* === minheap ============================================================== */
/* ========================================================================== */
#include "Mongoose_QPMinHeap.hpp"
#include "Mongoose_Internal.hpp"
namespace Mongoose
{
/* ========================================================================== */
/* === QPMinHeap_build ====================================================== */
/* ========================================================================== */
/* build a min heap in heap [1..nheap] */
void QPMinHeap_build(Int *heap, /* on input, an unsorted set of elements */
Int size, /* number of elements to build into the heap */
double *x)
{
Int p;
for (p = size / 2; p >= 1; p--)
{
QPMinHeapify(p, heap, size, x);
}
}
/* ========================================================================== */
/* === QPMinHeap_delete ===================================================== */
/* ========================================================================== */
/* delete the top element in a min heap */
Int QPMinHeap_delete /* return new size of heap */
(Int *heap, /* containing indices into x, 1..n on input */
Int size, /* number of items in heap */
const double *x /* not modified */
)
{
if (size <= 1)
{
return (0);
}
/* move element from the end of the heap to the top */
heap[1] = heap[size];
size--;
QPMinHeapify(1, heap, size, x);
return (size);
}
/* ========================================================================== */
/* === QPMinHeap_add ======================================================== */
/* ========================================================================== */
/* add a new leaf to a min heap */
Int QPMinHeap_add(
Int leaf, /* the new leaf */
Int *heap, /* size n, containing indices into x */
const double *x, /* not modified */
Int nheap /* number of elements in heap not counting new one */
)
{
Int l, lnew, lold;
double xold;
nheap++;
lold = nheap;
heap[lold] = leaf;
xold = x[leaf];
while (lold > 1)
{
lnew = lold / 2;
l = heap[lnew];
double xnew = x[l];
/* swap new and old */
if (xnew > xold)
{
heap[lnew] = leaf;
heap[lold] = l;
}
else
{
return (nheap);
}
lold = lnew;
}
return (nheap);
}
/* ========================================================================== */
/* === QPMinHeapify ========================================================= */
/* ========================================================================== */
/* heapify starting at vertex p. On input, the heap at vertex p satisfies */
/* the heap property, except for heap [p] itself. On output, the whole heap */
/* satisfies the heap property. */
void QPMinHeapify(Int p, /* start at vertex p in the heap */
Int *heap, /* size n, containing indices into x */
Int size, /* heap [ ... nheap] is in use */
const double *x /* not modified */
)
{
Int left, right, e, hleft, hright;
double xe, xleft, xright;
e = heap[p];
xe = x[e];
while (true)
{
left = p * 2;
right = left + 1;
if (right <= size)
{
hleft = heap[left];
hright = heap[right];
xleft = x[hleft];
xright = x[hright];
if (xleft < xright)
{
if (xe > xleft)
{
heap[p] = hleft;
p = left;
}
else
{
heap[p] = e;
return;
}
}
else
{
if (xe > xright)
{
heap[p] = hright;
p = right;
}
else
{
heap[p] = e;
return;
}
}
}
else
{
if (left <= size)
{
hleft = heap[left];
xleft = x[hleft];
if (xe > xleft)
{
heap[p] = hleft;
p = left;
}
}
heap[p] = e;
return;
}
}
}
} // end namespace Mongoose
|