MeehoweCK

Untitled

Jun 13th, 2024
471
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.10 KB | None | 0 0
  1. ~Node() {
  2.     for (auto& x : children) {
  3.         if (x) {
  4.             delete x;
  5.         }
  6.     }
  7. }
Advertisement
Add Comment
Please, Sign In to add comment