Homework - I have an assignment to write a program that will read a file. The file looks like this:
B 34 55 66 456 789 78 59 2 220 366 984 132 2000 65 744 566 377 905 5000
I 9000
I 389
Dm
DM
Where B is build a binary heap from an array of numbers(the numbers following the B.
I is insert a number into the array/heap
Dm is delete minimum and DM is delete maximum.
I have written the code for the heap, and can fill an array with random numbers. My problem is reading that first line and parsing it into a string B and an array.
I have tried using the following code but obviously it does not work.
char line[8];
char com[1];
int array[MAX] //MAX is pre-defined as 100
FILE* fp = fopen( "input_1.txt", "r" );
if( fp )
{
while( fgets ( line, sizeof(line), fp ) != NULL )
{
sscanf(line, "%s" "%d", &com, &array );
... //Following this, I will have a nested if that will take
each string and run the appropriate function.
if ( strcmp( com, "B" ) == 0 )
{
fill_array( array, MAX );
print_array( array, MAX );
}
I have read for about 6 hours over a total of 3 days and can't find a solution to my problem. Any help would be great.