基本上我试图从一个看起来像的文件中读取一个“块”数据
000000000
000000001
000100000
100000000
000000000
000000000
000000000
上面的示例将转换为两个数据块。第一个是 4 行高,第二个是 3 行高。
双空格分隔“块”。
这是我要阅读的代码,直到遇到双倍空格。(这会读取第一个循环,然后我会使用它fseek
来读取我想读取的任何其他块 - 不过在这个问题中并不重要)
while(!endofblock){
firstchar = fgetc(fptr); //read the first character
if(firstchar == '\n'){
if(fgetc(fptr) == '\n'){ //if its newline AND newline
endofblock = 1; //end of block is reached, loops break
}else{ //if its just one new line
*h = *h + 1; //increment h (height), a pointer passed from elsewhere
}
}
if(feof(fptr)){
endofblock = 1;
}
}
这在大多数情况下都可以正常工作 - 但在某些复杂的无法解释的情况下它不起作用。另外,它非常臃肿和凌乱。
有没有一种更整洁、更好的方法来计算数量new line
并在达到时停止计算double new line
?