ReadGEXF:C++版gexf文件解析器(目前仅测试Gephi生成的gexf文件)

项目地址:https://github.com/xysmlx/ReadGEXF

简易的读取gexf文件的程序,C++版本(适用于Windows/Linux)

后续计划功能:生成gexf文件

README:

# ReadGEXF
A simple GEXF file reader by C++

## Version 0.1
This version can read gexf file generated by Gephi.

## Build
=======================

g++ -c tinyxml2.cpp

ar -crv tinyxml2.a tinyxml2.o

g++ -o ReadGEXF main.cpp tinyxml2.a

=======================

or

Use the Visual Studio project (Based on VS2015 CTP)

## Run
in.gexf is the input file.

## References
TinyXML2: https://github.com/leethomason/tinyxml2
原文地址:https://www.cnblogs.com/xysmlx/p/4376717.html