---jaybird业余爱好

随笔分类 -  C++基础知识

摘要:#include <iostream>#include <vector>#include <fstream>#include <cassert>using namespace std;template<class InfoType, class VertexType>class OLGraph{ struct ArcBox {//弧结点 size_t tail_vex;//弧尾 size_t head_vex;//弧头 ArcBox *hlink;//指向弧头相同的下一条弧 ArcBox *tlink;//指向弧尾相同的下一条弧 In 阅读全文
posted @ 2012-03-16 16:29 jaybird

---jaybird业余爱好