在C++中想对xml文件进行排序。可是无法交换节点。
xml文件如下:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<SCHOOL>
<Student ID="2">
<Name>李磊</Name>
<Sex>男性</Sex>
<Country>中国</Country>
</Student>
<Student ID="3">
<Name>李明</Name>
<Sex>男性</Sex>
<Country>中国</Country>
</Student>
<Student ID="1">
<Name>李磊</Name>
<Sex>男性</Sex>
<Country>中国</Country>
</Student>
</SCHOOL>
相关分类