如何用fseek()去一行的开头

时间:2015-10-31 18:57:50

标签: c++ c file scanf fseek

我有一个函数,我检查传递的参数是否与误差范围内的.dat文件中的参数匹配。

我想做的是找到最佳匹配。所以,我读了整个文件,并跟踪给我最佳匹配的线。在我完成阅读文件后,我想回到那条特定的行并将其作为我的最终结果阅读。

但是,我不能这样做"回去"部分。

我的功能是:

Activate

我的结构是:

int isObjectMatches(FILE *rPtr, struct objectDatabaseList *db, double area, double length)
{
    double sum;
    errno_t err;
    double const errorThreshold = 0.4;
    double minError = 100.0;
    int lineNo = 0, bestMatchNo = 0;
    bool match = false;

    if ((err = fopen_s(&rPtr, "objects.dat", "r")) != 0)
        printf("Couldn't open the file to read.\n");
    else
    {
        rewind(rPtr);
        while (fscanf_s(rPtr, "%14s%lf%lf", db->dName, sizeof db->dName, &db->dArea, &db->dLength) == 3)
        {
            lineNo++;
            sum = pow((1 - (area / db->dArea)), 2) + pow((1 - (length / db->dLength)), 2);

            if (sum > errorThreshold) // No possible match
            {
                continue; // Keep reading
            }
            else
                if (sum < minError) // One possible match
                {
                    minError = sum;
                    bestMatchNo = lineNo; // Take the line number
                    match = true;
                    continue; // Keep reading
                }               
        }

        if (match)
        {
            fseek(rPtr, (bestMatchNo - 1)*sizeof(struct objectDatabaseList), SEEK_SET); // Find the line
            fscanf_s(rPtr, "%14s%lf%lf", db->dName, sizeof db->dName, &db->dArea, &db->dLength);
            fclose(rPtr);
            return 0;
        }
    }
    fclose(rPtr);
    return -1;
}

请注意,行的长度不是固定的数字,因为&#34; name&#34;可能会有所不同。

1 个答案:

答案 0 :(得分:3)

我会使用ftell获取每行开头的偏移量,然后使用fgets读取该行并使用sscanf解析该行。