Advertisement
Guest User

Untitled

a guest
Nov 19th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. void CNodeStatic::vAllGreter(int val) {
  2.  
  3. if (this->i_val > val) {
  4. cout << val << " ";
  5. }
  6. for (int i = 0; i < this->iGetChildrenNumber(); i++)
  7. {
  8. this->v_children[i].vAllGreter(val);
  9. }
  10.  
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement