**fig4_3.txt** /* 1*/ struct Tree_Node /* 2*/ { /* 3*/ Element_Type Element; /* 4*/ Tree_Node *First_Child; /* 5*/ Tree_Node *Next_Sibling; /* 6*/ };