[转载]
以下为一个XML文件,请画出其树形结构图:
<?xml version="1.0" standalone="yes"?>
<class>
<student>
<No>001 </No>
<name>zhang </name>
<mark>
<chinese> 80 </chinese>
<math> 90</math> </mark>
</student>
<student>
<No>002 </No>
<name>liu </name>
<mark>
<chinese> 90 </chinese>
<math> 75</math>
</mark>
</student>
<student>
<No>003 </No>
<name>wang </name>
<mark>
<chinese> 59 </chinese>
<math> 85</math> </mark>
</student>
<student>
<No>004 </No>
<name>chen </name>
<mark>
<chinese> 85 </chinese>
<math> 95</math>
</mark>
</student>
</class>