Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 ???

share|improve this question
1  
More info plz: what do you mean by "graph" – Bohemian Jun 12 '11 at 23:46
and what kind of algorithms are you applying? – irrelephant Jun 12 '11 at 23:46
One saves the data as text -- humanly readable, and the other as a serialized object in binary -- not humanly readable but somewhat more compressed and retaining some logical information. Another efficient way? Hm, there's xml serialization, but I've never done this myself. – Hovercraft Full Of Eels Jun 12 '11 at 23:46
graph class contains an arraylist of nodes each node class contain an arraylist of edges which links to the other node and the values of the edge – dawnlight Jun 12 '11 at 23:52
algorithms are Dijkstra , prim and ford fulkerson – dawnlight Jun 12 '11 at 23:54
show 3 more comments

1 Answer

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.

share|improve this answer
thank you very much :) – dawnlight Jun 13 '11 at 9:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.