我正在尝试编写一个程序,它应该读取一行并将其内容存储在一个数组中,因此它需要逐行读取并读取一行中的不同字符。例如我的输入是
4 6
0 1 4
0 2 4
2 3 5
3 4 5
前两个字符将确定其他内容,我需要读取一行,以便可以在数组中写入 0 1 4 并在另一个数组中写入 0 2 4。
#include <stdio.h>
#include <stdlib.h>
#include <iostream>
#include <list>
#include <iterator>
#define BUFFER_SIZE 50
int main()
{
using namespace std;
int studentCount, courseCount;
FILE *iPtr;
iPtr = fopen("input.txt", "r");
if(iPtr == NULL){ printf("Input file cannot be opened!\n"); return 0; }
fseek(iPtr, 0, SEEK_SET);
fscanf(iPtr, "%d", &studentCount);
fscanf(iPtr, "%d", &courseCount);
list <int> S[studentCount]; // an array of linked lists which will store the courses
char buffer[BUFFER_SIZE];
char temp[BUFFER_SIZE];
int data;
int x=0, counter=0; // x traces the buffer
fgets(buffer, BUFFER_SIZE, iPtr);
while( buffer[x] != '\0')
{
if( isspace(buffer[x]) ) counter++;
x++;
}
printf("%d\n", counter);
fflush(stdin);
getchar();
fclose(iPtr);
return 0;
}
当我调试并遵循缓冲区 [x] 的值时,我发现当 x=0 时它总是具有值“10 \n”,而当 x=1 时它总是具有值“0 \0”。我该如何解决这个问题,或者有没有更好的逐行阅读方法?我还需要一行中的数据数量,因此仅使用 fgets 或 getline 是不够的。