1

このコードの結果を2D配列に割り当てたいので、プログラムの最初の出力からの結果をファイルに保存しようとしました。後でファイルを再度開いて、配列に値を割り当てます。配列を使用して距離関数の結果を取得できます…残念ながら、配列を「int data [100] [2]」と定義した場合、「getline(myfile、line)」を使用できません… intではない文字列値、それを正しく行う他の方法はありますか?この部分をより良くまたはより単純にするための提案は大歓迎です

#include<iostream>
#include<string>
#include <fstream>
#include<cmath>

using namespace std;

int main() {

    /// to find the nodes in each 100*100 gride///
    int x, y, Radio_Range = 80, No_Max = 100;
    int node_degree[100], data[100][2];
    int Total_Degree = 0, Avg_Degree;

    ofstream myfile;
    myfile.open("example.txt");

    int miny = 0, max_y = 99;
    for (int i = 0; i < 5; i++) {
        int minx = 0, max_x = 99;

        for (int j = 0; j < 5; j++) {
            for (int k = 0; k <= 4; k++) {
                x = minx + rand() % (max_x - minx + 1);
                y = miny + rand() % (max_y - miny + 1);
                myfile << x << "  " << y << endl;
            }
            minx = max_x + 1;
            max_x = max_x + 100;
        }

        miny = max_y + 1;
        max_y = max_y + 100;
    }

    ///to finde the node degree//the avg degree//the distance///

    int loop = 0; //Index of array//The line taken from the *.txt source
    string line;
    if (myfile.is_open()) { //Checking if the file can be opened
        while (!myfile.eof()) { //Runs while the file is NOT at the end
            getline(myfile, line); //Gets a single line from example.txt
            data[loop][2] = line; //Saves that line in the array
            loop++;

            for (int i = 0; i < No_Max; i++) {
                for (int j = 0; j < No_Max; j++) {
                    double distance = sqrt(
                            pow(data[i][0] - data[j][0], 2) + 
                            pow(data[i][1] - data[j][1], 2));

                    if (distance <= Radio_Range) {
                        node_degree[i] = node_degree[i] + 1;
                    }

                    cout << data[i][0] << "-" << data[i][1] << endl;
                    cout << data[j][0] << "-" << data[j][1] << endl;
                    myfile << " The node degree \n" << node_degree[i] << endl;
                }
            }

            for (int i = 0; i < No_Max; i++) {
                Total_Degree = Total_Degree + node_degree[i];
                Avg_Degree = Total_Degree / No_Max;
                myfile << " The Avg degree\n" << Avg_Degree << endl;
            }

            myfile.close();
        }
    }
}
4

2 に答える 2

0

data[loop][2]

列 #2 はありません。C++ のインデックスはゼロベースです。

于 2012-11-05T21:02:57.627 に答える
-1

割り当て先の配列の変数の型と一致するように、データを型キャストする必要がある可能性があります。

于 2012-11-05T20:35:51.930 に答える