parent / fatherA is parent of {B, C, D}.B is parent of {E, F} child / son / subtreeB, C, and D are child from A.ancestorAll root from this node.A and B are ancestor from E. descendantExcept A from the tree, all nodes are descendant from A.brother / siblingC is brother from B.F, G, H, and I are brother from E. leafDegree is zero.level | height / depthExample from graph.level 1 = A. level 2 = {B, C, D} level 3 = {E, F, G, H, I} depth = 3  | 
 
 | 
expressionCreate a tag to determine tree or leaf.\( T=(R,T_1,T_2,\dots,T_n) \) \( T_1 = (B,\; E,F) \) \( T_2 = (C,\; G,H) \) \( T_3 = D \) \( \Rightarrow (\;A,\;(B,\;E,F),\;(C,\;G,H),\;D\;) \) code(c) | 
Original tree 
 | 
| 
Images of generalized list \( \Rightarrow (\;A,\;(B,\;E,F),\;(C,\;G,H),\;D\;) \)  
 | 
|
| 
As title. Order of son(subtree) is not important. code(c) | 
Original tree 
 | 
Left-Child Right-Sibling
 
 | 
|
| 
Order of subtree is not important. Order of subtree of binary tree is important. Graph as left-child right-sibling,but there is different from left and right tree to assign. Left and right tree need to be defined clearly. . code(c) | 
Different binary tree 
 |