How would I go about dynamically allocating memory to char** list in this function?
Basically the idea of this program is I have to read in a list of words from a file. I cannot assume max strings or max string length.
I have to do other stuff with the C-strings but that stuff I should be fine with.
Thanks!
void readFileAndReplace(int argc, char** argv)
{
FILE *myFile;
char** list;
char c;
int wordLine = 0, counter = 0, i;
int maxNumberOfChars = 0, numberOfLines = 0, numberOfChars = 0;
myFile = fopen(argv[1], "r");
if(!myFile)
{
printf("No such file or directory\n");
exit(EXIT_FAILURE);
}
while((c = fgetc(myFile)) !=EOF)
{
numberOfChars++;
if(c == '\n')
{
if(maxNumberOfChars < numberOfChars)
maxNumberOfChars += numberOfChars + 1;
numberOfLines++;
}
}
list = malloc(sizeof(char*)*numberOfLines);
for(i = 0; i < wordLine ; i++)
list[i] = malloc(sizeof(char)*maxNumberOfChars);
while((c = fgetc(myFile)) != EOF)
{
if(c == '\n' && counter > 0)
{
list[wordLine][counter] = '\0';
wordLine++;
counter = 0;
}
else if(c != '\n')
{
list[wordLine][counter] = c;
counter++;
}
}
}
If I were you, I'd map the file to private memory, using
mmap
, and then iterate over the file, storing starts of words in an array ofchar**
that you can increase as you go withrealloc
, and replacing line breaks with 0.That way, you have your words in memory as a continuous block, you don't have to care about file I/O, because you have the entire text file in memory as
char*
, and you don't have to malloc an array of arrays.For information on the functions, see the respective man pages, or drop me a comment :)
EDIT: If you don't know mmap yet, have a look at this: http://www.jimscode.ca/index.php/component/content/article/13-c/45-c-simple-mmap-example
Most C programmers today still try to read files into memory using
fopen
and friends, but that's completely unnecessary and introduces additionel levels of complexity. (buffering, growing arrays, ...) andmmap
is a nice alternative that moves all the nasty work down to the OSDo like this:
Additionally, if you are allocating memory dynamically. you are to free it as work done:
EDIT
In you revised question:
wordLine
andcounter
are0
before this code:
you have to assign value to
wordLine
andcounter
variableAlso memory allocation should be before the following loop(outside):
EDIT:
New your third version of question. You are reading file two times. So you need to fseek(), rewind() to first char before second loop starts.
try with:
also I have doubt in your logic to calculate
numberOfLines
andmaxNumberOfChars
. please check that alsoEDIT
I think your calculation for
maxNumberOfChars = 0, numberOfLines = 0
is wrong try like this:maxNumberOfChars
is max number of chars in a line.Also change code: