What software to use to generate an image of a giant graph?

0

I have a program in c ++, done with the representation of graphs with adjacency list, however, there are more than 2 million nodes in it. Is there any software that has a text format, which I can generate from my program, and import into that software to generate an image?

    
asked by anonymous 29.05.2018 / 21:56

1 answer

1

Make your software generate an archive by graphviz . It is a "de facto" standard and several softwares will be able to open it.

Some links that might be useful:

General:

C ++ + Graphviz:

30.05.2018 / 15:08