Nov 6, 2013 at 3:56am
Hi guys. Quick question for anyone who can help.
I have a Binomial tree, three layers deep.
(hopefully formatting works right on this!)
------4
----2---5
--1---3---6
These are my nodes.
Somehow I need to make node '5' and node '2' BOTH connect to node '3' using linked lists and pointers.
Can anyone either tell me or point me in the right direction of what I need to do/research?
Last edited on Nov 6, 2013 at 4:40am
Nov 6, 2013 at 4:47am
I'm not sure I understand the problem.
four->right->left = three;
four->left->right = three;
Did you omit any parameters of the problem?