I have a list of vertices as a big array which are:
vert[N]
100, 1350, 200, 400, 12000, ....
It means that the labels are saved in an array which is : v[1]=100, v[2]=1350, v[3]=200, v[4]=400, v[5]=12000, ....
and I also know the connectivity relation
100 12000
1350 200
400 15000
.
.
.
so, edge is also in a another array n[1]=12000, n[2]=200, n[3]=15000, .... so it means 100 is connected to 12000. how can i create a graph in boost with these inputs.