随笔分类 -  图--拓扑排序

摘要:#include"stdio.h"#include"string.h"const int N=105;int n,m;int indegree[N],map[N][N];int top_sort(){ int i,l,k; for(k=0;k<n;k++) { for... 阅读全文
posted @ 2013-11-18 17:52 ruo_yu 阅读(150) 评论(0) 推荐(0)