I need to save a graph in order to load it and apply algorithms on it ... so what is best to do save the graph as text file or as an object ?? ... or is there another efficient way ???
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
If you can make your node and edge classes serializable, that will be the easiest thing. You won't have to worry about dealing with circular references on write or reconstructing them on read; they will automatically be reconstituted. If you use symbolic data, then you will need to have a unique id for each node unless you are guaranteed that no two nodes in the graph will ever have the same data. Then you'll need to maintain a symbol table for reconstructed nodes when you reconstruct the graph. Lots of bookkeeping headaches. |
|||
|
|