|
Can you suggest a good book or other resource on graphs and graph algorithms? Something that will cover some basics but also advanced problems and algorithms.
Started by MichaĆ Piaskowski on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
Cormen....
Http://www.amazon.com/Algorithms-Java-Part-Graph-Pt-5/dp/0201361213
Graph Theory with Applications by Bondy and Murty (complete pdf book available for free)
T.
Robert Sedgewick's Algorithms in Java, Part 5 book covers Graphs.
|
|
I see grammar graphs on the websites for SQLite and JSON . What program can be used to generate these pretty pictures?
Started by mazin k. on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The graphs on json.org are drawn in visio ..
I don't know if they have some program that automates it, but you can make those kinds of graphs for the graphs on its website.
|
|
What are the suitable data structures for graphs ?
I guess the answer varies on the type of graph?
in any case, any recommendations?
Answer Snippets (Read the full thread at stackoverflow):
If it's dense, a 2D://en.wikipedia.org/wiki/Adjacency....
Seeing as you want an abstractWhen the graph is sparse, a Map<Vertex, List<Vertex>> (1) will do.
graphs, matrices have less relative overhead the denser the graph is).
|
Ask your Facebook Friends
|
This may be a rather novice or even wrong question so please be forgiving. Is there a way to compare 2 graphs created using the Boost Graph Library => with 1 graph created in memory and the 2nd loaded from an archive (i.e. 2nd was serialized out previously...
Started by ossandcad on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Edit : If the vertex labels (values associated with each vertex... .
However edges in both graph and make sure each is in the other graph as well.
In the general case, graph equality is in NP , and thus is essentially impossible to solve.
|
|
I have a cacti graph set up. I'd like to receive daily emails of some graphs. What are my options?
Started by Rory McCann on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
I don't believe it has a folder with the graph's already generated, or if generates them as they are requested.
Builtin functionality to export graphs (Settings => Graph Export).
|
|
I want to show graphs on sharepoint site .how to do this ?
Started by Lalit Dhake on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
You will benefit from people being able to update the excel .
The worksheet which contains the graph.
|
|
What are the best libraries for creating pretty charts and graphs in a Python application?
Started by sverrejoh on
, 16 posts
by 16 people.
Answer Snippets (Read the full thread at stackoverflow):
CairoPlot
Chaco from enthought is another option
You can also use... .
NodeBox is awesome for raw graphics creation.
Have you looked into ChartDirector for Python ?
I can't speak about this one, but I've used ChartDirector for PHP and it's pretty good .
|
|
Is there a framework out there that will allow me to create simple bar and line graphs?
Started by Matt S. on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
There's the newer, open source, Core Plot ..
UPDATE : there's also this one.
There's the GraphX framework - I played with it years ago; I don't know what status it's in these days .
|
|
Is there any libraries to visualizate simple dependency graphs? I suppose that SVG is good solution.
Started by Kirzilla on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
If your graph is reasonlably largeI used http://www.aditus....
Checkout http://thejit.org/
GraphViz does a nice job for tiny graphs, but not for huge ones.
graphs like in "dependency graph", then Graphviz should be mentioned.
|
|
I'm about to code some graphs and charts from scratch. Does anyone know of book that covers the reason for using some graphs and charts as well as the implementation of graph and charts. I'd prefer something combined computer science and the math of charts...
Started by Aris Bartee on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
About the reason of using some graphs: Chart Suggestions
I do not think you will find the why s "pie charts" are the very worst form of graph EVER, unless your purpose is to cleverly conceal.
|