vote up 3 vote down star
1

I have a problem related to graph. I am not a computer science grad hence needed a some quick intro on what is graph and were can i read about graph and how to solve graph related problem in c++ or in general.

flag

when you say "graph" do you mean a chart or a graph in the mathematical sense? – Simon Nov 25 '08 at 8:51
graph like cyclic directed,acyclic graph – yesraaj Nov 25 '08 at 8:53

5 Answers

vote up 1 vote down check

The boost graph library may be a starting point and give you some code for solving your graph related problems.

link|flag
vote up 1 vote down

Please see Graph problems in the Stony Brook Algorithm Repository, and a cute lecture by Xavier Llora.

link|flag
vote up 0 vote down

As always start here

link|flag
vote up 0 vote down

I would start by studying a few specific algorithms. Dijkstra's algorithm and the graph closure algorithm are good places to start. Also most introductory computer science (eg. Data Structures) texts have a section on graphs. I used this book, mostly after I was already pretty comfortable with most of the material though. It takes a pretty formal approach, so if your maths is strong you might like it.

The community might be able to give you better pointers if you mentioned something specific that you're trying to solve (if there is such a thing).

link|flag
vote up -1 vote down

This is a very cool tool for representing graphs

link|flag
why was this voted down? – Simon Nov 25 '08 at 13:08

Your Answer

Get an OpenID
or

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