1
- // Copyright 2014-2024 the openage authors. See copying.md for legal info.
1
+ // Copyright 2014-2025 the openage authors. See copying.md for legal info.
2
2
3
3
#pragma once
4
4
@@ -404,7 +404,7 @@ class PairingHeap final {
404
404
* erase all elements on the heap.
405
405
*/
406
406
void clear () {
407
- auto delete_node = [](element_t node) { delete node; };
407
+ auto delete_node = [](element_t & node) { delete node; node = nullptr ; };
408
408
this ->iter_all <true >(delete_node);
409
409
this ->root_node = nullptr ;
410
410
this ->node_count = 0 ;
@@ -586,7 +586,7 @@ class PairingHeap final {
586
586
* @param func Function to apply to each node.
587
587
*/
588
588
template <bool reverse = false >
589
- void iter_all (const std::function<void (const element_t &)> &func) const {
589
+ void iter_all (const std::function<void (element_t &)> &func) {
590
590
this ->walk_tree <reverse>(this ->root_node , func);
591
591
}
592
592
@@ -599,21 +599,18 @@ class PairingHeap final {
599
599
* @param func Function to apply to each node.
600
600
*/
601
601
template <bool reverse = false >
602
- void walk_tree (const element_t &start,
603
- const std::function<void (const element_t &)> &func) const {
602
+ void walk_tree (element_t &start,
603
+ const std::function<void (element_t &)> &func) {
604
604
if constexpr (not reverse) {
605
605
func (start);
606
606
}
607
607
608
608
if (start) {
609
609
auto node = start->first_child ;
610
- while (true ) {
611
- if (not node) {
612
- break ;
613
- }
614
-
610
+ while (node) {
615
611
this ->walk_tree <reverse>(node, func);
616
- node = node->next_sibling ;
612
+ if (node)
613
+ node = node->next_sibling ;
617
614
}
618
615
if constexpr (reverse) {
619
616
func (start);
0 commit comments