create the following structure
public class nodo
{
public string info = null;
public nodo[] nodl = new nodo[2] ;
}
nodo nod0=new nodo();
nod0.info = "1";
nodo nod1 = new nodo();
nod1.info="2";
nod0.nodl[0]=nod1;
nodo nod2 = new nodo();
nod2.info="3";
nod0.nodl[1]=nod2;
graphically should have this form
_nod0_
! !
! !
nod1 nod2
My question is with this structure I can stop at nod0.nodl [0] and go to fix with some travel the info of nod0 and nod2, that is to go up to nod0 and from there go to until no nod2, because I was trying to make binary trees with more branches and I can go through them with recursion. The problem is that I always have to stand at the root, but if I wanted to cross it from another point I would need another type of structure?