祖父(GF)>父亲>儿童
祖父(GF):有n个孩子,表示为父亲(F)
父亲(F):父亲有n个子女,也有父亲姓名
儿童:儿童具有属性名字
请纠正我,如果我错了
<GF>
<father>
<father-name> f1
<child-name> f1c1 </child-name>
<child-name> f1c2 </child-name>
</father-name>
<father-name> f2
<child-name> f2c1 </child-name>
<child-name> f2c2 </child-name>
<child-name> f2c3 </child-name>
</father-name>
<father-name> f3
<child-name> f3c1 </child-name>
</father-name>
<father>
</GF>
答案 0 :(得分:1)
以下是适用于您的描述的正确xml
<GF>
<father fName="f1">
<child child-name="f1c1" />
<child child-name="f1c2" />
</father>
<father fName="f2">
<child child-name="f2c1" />
<child child-name="f2c2" />
<child child-name="f2c3" />
</father>
<father fName="f3">
<child child-name="f3c1" />
</father>
</GF>
希望有所帮助