在不知道行长

时间:2016-12-02 11:39:13

标签: c stdin

我想从stdin读取具有可变长度的行直到输入结束。示例输入将是这样的:

#.###############
#...#...........#
#.###.#####.#.###
#...........#...#
###############.#

但有不同长度的行和列。

将其读入2d数组的最佳方法是什么,除了将其作为字符读取?

2 个答案:

答案 0 :(得分:2)

假设您在兼容POSIX的系统上运行,您可以使用the getline() function读取几乎任意长度的行(仅受可用内存限制)。这样的事情应该有效:

char *line = NULL;
size_t bytes = 0UL;

for ( int ii = 0;; ii++ )
{
    ssize_t bytesRead = getline( &line, &bytes, stdin );
    if ( bytesRead <= 0L )
    {
        break;
    }

    lineArray[ ii ] = strdup( line );
}

free( line );

您必须自行添加错误检查并自行处理lineArray

答案 1 :(得分:0)

char *buff = malloc(1024 * 100); // 100K should be plenty, tweak as desired.
char *maze = 0;
int width = 0, 
int height = 0;    

FILE *fp = fopen(input.txt, "r");
fgets(buff, 1024 * 100, fp);
if(!strchr(buff, '\n'))
   goto failed_sanity_test;
striptrailingwhitespace(buff);
if(height == 0)
   width = strlen(buff);
/* sanity-test width ? */
else
   if(strlen(buff) != width)
       goto ragged_edge_maze;
temp = realloc(maze, width * (height + 1));
if(!temp) 
  goto out_of_memory;
maze = temp;
memcpy(maze + height * width, buff, width);
height++;

与许多其他语言相比,它在C语言中很狡猾,但至少你可以完全控制错误条件。