摘要: 1 #include <iostream> 2 #include <vector> 3 #include <algorithm> 4 #include <ctime> 5 6 using namespace std; 7 using std::vector; 8 9 struct ArcBox 10 { 11 int headvex,tailvex; 12 ArcBox *hlink,*tlink; 13 float weight; 14 }; 15 16 17 template <class TElemTyp... 阅读全文
posted @ 2012-12-18 21:10 uniquews 阅读(336) 评论(0) 推荐(0) 编辑