码迷,mamicode.com
首页 > 其他好文 > 详细

生成网络流图

时间:2015-05-29 00:42:33      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:

自己yy的算法,多棒啊是不是!!!

 1 int n=100000,m=1000000;
 2 write(n);PAU;write(m);ENT;
 3 int i;
 4 for(i=1;i<=m;){
 5     int last=1;
 6     for(int j=1;i<=m&&j<=10;i++,j++){
 7         int now=rand()%n+1;
 8         while(now==last) now=rand()%n+1;
 9         write(last);PAU;write(now);PAU;write(rand()%100+1);ENT;last=now;
10     }
11     write(last);PAU;write(n);PAU;write(rand()%100+1);ENT;
12 }

 

生成网络流图

标签:

原文地址:http://www.cnblogs.com/chxer/p/4537299.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!