Update binary_tree.c

This commit is contained in:
jdh 2025-04-30 14:08:35 +08:00
parent 3baf08ba4e
commit fc334bbfca

View File

@ -58,4 +58,4 @@ void traverse_tree(tree_node *roots)
roots = queue[front]; roots = queue[front];
front = (front+1) % 3; front = (front+1) % 3;
} }
} }