How to put graph information into C++

Hello
I am new to C++. I am going to work on graph coloring topic. I ve read some paper and algorithm about solving the problem based on maximum independent set extraction. In those articles there are something is called pseudo-code like:
Require: Graph G (V,E)
Ensure: A coloring of G
1: Begin
2: k=1
3: while (|V|>0) do
4: IM=ATS(G) { Apply ATS to find the largest independent set possible}
.
.
.
21: end for
22: end while
23: End
I read some basic things about programming like while, for ,... but Don't know where/how to start. I found some resources but little complicated . I'd be thankful if you can introduce resources that I can start with.
Last edited on
You might have to look into "R" programming, its used for this type of things.
Topic archived. No new replies allowed.