[priority-queue] Optimize swap()

This commit is contained in:
Behdad Esfahbod 2022-05-18 16:14:25 -06:00
parent c7317ef761
commit 9308659fd7
1 changed files with 3 additions and 3 deletions

View File

@ -142,9 +142,9 @@ struct hb_priority_queue_t
void swap (unsigned a, unsigned b)
{
item_t temp = heap[a];
heap[a] = heap[b];
heap[b] = temp;
assert (a <= heap.length);
assert (b <= heap.length);
hb_swap (heap.arrayZ[a], heap.arrayZ[b]);
}
};