图论

对于图的建立 利用vector ,其他方法,用到必须使用的情况在说。

图论
struct edge{
    int d,w;
    edge(){ }
    edge(int a,int b){d=a,w=b;}
   bool    operator  <(const edge &t)const     
    {
        if(w==t.w) return d<t.d;
        return w<t.w;
    }
};
vector <edge> p[M];
int add(int a,int b,int c)
{
    edge t=edge(b,c);
    p[a].push_back(t);
    t=edge(a,c);
    p[b].push_back(t);
}
图的建设

 

特别小心的地方: 

  对于第一个点 一定要特别标记,不然会错;

 

 

上一篇:3D制作中的拓扑的含义是什么?


下一篇:NSX-T 系列:第 23部分 - 升级NSX-T软件版本