#include <stdio.h> #include <stdlib.h> #include <iostream> #include <sstream> #include <fstream> #include <string.h> #include <time.h> #include <ctime> #include <vector> #include <string.h> int main() { ifstream FIC; FILE *fp; f.open("dsjc125.1.txt"; //File_Name表示文件名字 如File_Name = “dsjc125.1.txt" if ( FIC.fail() ) { cout << "### Erreur open, File_Name " << File_Name << endl; exit(0); } char StrReading[100]; FIC >> StrReading; if ( FIC.eof() ) { cout << "### Error open, File_Name " << File_Name << endl; exit(0); } int x1, x2; while ( ! FIC.eof() ) { char bidon[50]; if ( strcmp(StrReading, "p" )==0 ) { //FIC >> StrReading; FIC >> N_node >> N_edge; cout << "Number of vertexes = " << N_node << endl; cout << "Number of edges = " << N_edge << endl; for ( int x=0; x< N_node; x++ ) for ( int y=0; y< N_node; y++ ) Edge[x][y] = 0; } if ( strcmp(StrReading, "e")==0 ) { FIC >> x1 >> x2; x1--; x2--; if ( x1<0 || x2<0 || x1>= N_node || x2 >= N_node ) { cout << "### Error of node : x1=" << x1 << ", x2=" << x2 << endl; exit(0); } Edge[x1][x2]=Edge[x2][x1]=1; max_edg++; } FIC >> StrReading; } FIC.close(); return 0; }
时间: 2024-02-10 10:23:34 浏览: 85
这段代码是一个简单的C++程序,用于从文件中读取图的顶点和边信息,并存储在一个二维数组中。以下是对代码的解析:
1. `#include` 部分包含了一些必要的头文件。
2. `main()` 函数是程序的入口点。
3. `ifstream` 和 `FILE` 是用于文件操作的类和结构体。
4. `f.open("dsjc125.1.txt";` 打开名为 "dsjc125.1.txt" 的文件,如果打开失败则会输出错误信息并退出程序。
5. `char StrReading[100];` 用于存储从文件中读取的字符串。
6. `FIC >> StrReading;` 将文件中的下一个字符串读取到 `StrReading` 中。
7. `if ( FIC.eof() )` 检查是否已到达文件末尾。
8. `FIC >> N_node >> N_edge;` 从文件中读取图的顶点数和边数。
9. `for ( int x=0; x< N_node; x++ )` 和 `for ( int y=0; y< N_node; y++ )` 循环用于初始化二维数组 `Edge`。
10. `if ( strcmp(StrReading, "e")==0 )` 检查读取到的字符串是否为 "e",表示接下来是一条边的信息。
11. `FIC >> x1 >> x2;` 从文件中读取边的起点和终点。
12. `x1--; x2--;` 将顶点编号减1,因为数组索引从0开始。
13. `Edge[x1][x2]=Edge[x2][x1]=1;` 将边的信息存储到二维数组中。
14. `FIC >> StrReading;` 继续读取下一个字符串。
15. `FIC.close();` 关闭文件。
这段代码主要是读取一个图的顶点和边信息,并将其存储在一个二维数组中。但是代码缺少了一些变量的声明和定义,无法完整运行。如果需要更详细的解答,请提供完整的代码和文件内容。
阅读全文