freekbird
JCHJava Community | Help. Code. Learn.
•Created by freekbird on 3/23/2025 in #java-help
Confused Tree help
I'm a beginner programmer learning about trees currently. I have a question about my confused pointer checker for my tree. The rules that need to be followed are as such:
●The root node’s confused pointer is always null.
● Nodes at odd depth have confused pointers pointing to their parent.
● Nodes at even depth have confused pointers pointing to a random node at the same
depth. If there are no other nodes at that depth, it points to null.
currently this is what I have:
So, the issue that i'm coming across is that it always keeps returning false when it should. I've combed through this for a hot minute and I still haven't found the issue.
5 replies