Fast and efficient way to read a space separated file of numbers into an array?

Posted by John_Sheares on Stack Overflow See other posts from Stack Overflow or by John_Sheares
Published on 2010-06-01T19:57:36Z Indexed on 2010/06/01 20:03 UTC
Read the original article Hit count: 107

Filed under:
|
|
|

I need a fast and efficient method to read a space separated file with numbers into an array. The files are formatted this way:

4 6
1 2 3 4 5 6
2 5 4 3 21111 101
3 5 6234 1 2 3
4 2 33434 4 5 6

The first row is the dimension of the array [rows columns]. The lines following contain the array data.

The data may also be formatted without any newlines like this:

4 6
1 2 3 4 5 6 2 5 4 3 21111 101 3 5 6234 1 2 3 4 2 33434 4 5 6

I can read the first line and initialize an array with the row and column values. Then I need to fill the array with the data values. My first idea was to read the file line by line and use the split function. But the second format listed gives me pause, because the entire array data would be loaded into memory all at once. Some of these files are in the 100 of MBs. The second method would be to read the file in chunks and then parse them piece by piece. Maybe somebody else has a better a way of doing this?

© Stack Overflow or respective owner

Related posts about c#

Related posts about parsing