返回列表 发帖

帮忙查看 缺少什么头文件

#ifdef _MSC_VER #pragma warning(disable:4786) #endif// _MSC_VER #include #include #include #include using namespace std; #include "d_graph.h" ©int main() { ifstream graphIn; graph g, minSpan; int weight; string fileName; cout << "Graph input 文件: "; cin >> fileName; graphIn.open(fileName.c_str()); if (!graphIn) { cerr << "Cannot open ';" << fileName << "';" << endl; exit(1); } graphIn >> g; weight = minSpanTree(g, minSpan); cout << "MST has weight "<< weight << endl << endl; cout << " --- MST Graph ---" << endl; cout << minSpan << endl; return 0; }

帮忙查看 缺少什么头文件

是最小生成树阿。
你最好把你全部的代码都贴出来
把这个d_graph.h你写的头文件代码贴出来
&copy;int main()这个错了改成int main()
其余的没有仔细看哈。

TOP

返回列表 回复 发帖