Programming Assignment # 3
Dynamic Memory Allocation
Read all the pages before starting to write your code
For this assignment you have to write a c program that will use dynamic memory allocation.
Your solution
should follow a set of requirements to get credit.
Problem
An educational center offers certain number of courses. A course can have one or more sections.
A section can have one or more students (assume that a student cannot enroll in multiple sections
of the same course). A student has to do a certain number of assignments in the course. In order
to pass the course, the average score of the assignment has to be >=70.
You will write a program that will read data about the courses, sections, students, and scores of
the students and will produce some summarized results from the data.
Input Specification (read data from a file assignment1input.txt. Do not use any other file name in your
code.):
The first line of the file contains a single positive integer, t (t<=25), that represents the number of test cases to
process.
The first line of each test case contains a single positive integer, c (c<=500), that represents the number of courses.
After that the file contains data for c number of courses. For each course:
The first line of a course contains a string, cn (all lower case, single word, max length <=20), that represents the
course name.
The next line contains a single positive integer, s (s<=10), that represents the number of sections in the course
cn. After that the file contains data for s number of sections for the course as follows. For each section:
The first line contains two positive integers, st (st<=500) and m (m<=20), where st represents the
number of students in the section and m represents the number of assignments in the section. The following st number of lines represents data for the st number of students (each line for each student).
A student data line contains a positive integer, id (id<=50,0000), a string lname (all lower case, single word, max
length <=20), and m positive float numbers (each float number is <=100) separated by spaces, where id
represents the id number of the student, lname represents the last name of the student, and m
positive float numbers
represent the score of the students in m assignments for the course. Assume that the id numbers are unique for
each student.
Similarly, the file contains data for s number sections for the course cn. Similarly, the file contains data for all
the courses for each test case.
Output (output should be in console. No need to write the output to a file):
For each course, display course name (in the same order they appear in the file), total number of students passed,
average scores for each section of the course (in the same order they appear in the file), id, last name and average
score of the student who achieved highest average score in the assignments of the entire course regardless of
section (print the first student only if multiple students achieved the highest score). Display the result in one
course per line in the following format:
course_name pass_count list_of_averages_section(separated by space up to two decimal places) id lname
avg_score (up to two decimal places)
Where course_name is the name of the course, pass_count is the total number of students passed the course,
list_of_averages_section is the list of average scores per section of the course, id, lname and avg_score is the id,
last name, and average score of the student who achieved the highest score in the course.
Sample assignment1input.txt :
cs1 //name of course 1
101 john 70 60.5 95.2 50.6 //id lname scores 102 tyler 80 60.5 95.2 66.6
103 richard 70 60.5 85.2 50.6
104 alan 40 60.5 95.2
math2 //name of course 2
2 2 //no. of students and assignments for sec1 of course 2 (math2)
101 john 95.2 53.6
103 richard 86.2 56.6
105 edward 90.5 60.5 98.2
104 alan 40 60.5 95.2
110 kyle 90.5 98.2
108 bob 45 85.2
109 smith 75.5 65.9 physics3 //name of course 3
1 //number of sections of course 3
4 2 //num of students and assignments for sec1 of course3 (physics3)
105 edward 60.5 98.2
104 alan 40.5 95.2
108 bob 55 85.2
109 smith 65.5 68.9
2//num of courses for test case2. The following lines are for test case2
cs1 //name of course 1
2 //number of sections for course 1 (CS1)
2 3 //no. of students and assignments for sec1 of course 1 (cs1) 102 sahar 90.5 60.5 98.2
101 reza 40 60.5 95.2
4 3 //num of students and assignments for sec2 of course 1 (cs1) 104 manha 85.5 60.5 95.2
112 aleena 80 60.5 95.2
103 jennifer 70 60.5 85.2
109 ali 78.0 63.5 85.5
physics2 //name of course 2
3 //number of sections for course 2 (physics2)
2 2 //num of students and assignments for sec1 of course 2 (physics2)
101 reza 95.2 53.6
103 jennifer 86.2 56.6
105 aziz 90.5 60.5 98.2
104 manha 40 60.5 95.2
110 aisa 90.5 98.2
108 hasan 45 85.2 109 nadia 75.5 65.9 Sample Output
test case 1
cs1 2 70.41 74.15 105 edward 83.07
math2 5 72.90 74.15 76.72 110 kyle 94.35
physics3 2 71.12 105 edward 79.35
test case 2
cs1 5 74.15 76.63 102 sahar 83.07
physics2 5 72.90 74.15 76.72 110 aisa 94.35
Requirements for the assignment:
are not allowed to add or delete any member for the structure.
typedef struct student{ int id;
char *lname; //stores last name of student
float *scores; //stores scores of the student. Size is taken from num_scores array.
float std_avg; //average score of the student (to be calculated)
}student;
typedef struct course{
char *course_name; //stores course name int num_sections; //number of sections
student **sections;//stores array of student arrays(2D array). Size is num_sections; int *num_students;//stores array of number of students in each section. Size is num_sections;
int *num_scores; //stores array of number of assignments in each section. Size is num_sections;
} course;
A partial view of the memory map of the arrays will be like the following figure. Courses is an array of course.
Sections of a course is an array of arrays of students (a.k.a 2D array of students) .
receive from the file.
implement at least the following functions:
an integer to track how may courses the file has. Then it reads the data for an entire test case and return
the allocated memory for all the courses (including sections) for a test case. Note that you can call
other functions from this function as needed.
This
function takes the file pointer, references of two arrays, one for number of students, and one for number of scores for a course. The function also takes an integer that indicates the number of sections
the course has. The function reads all the data for all the sections of a course, fill-up the num_students
and num_socres array of the course and returns 2D array of students that contains all the data for all the
sections of a course. A good idea would be calling this function from the read_course function.
produced and filled by all the courses of a test case and also takes the size of the array. Then it displays
the required data in the same format discussed in the sample output. You can write and use more functions in this process as you wish.
produced and filled by all the courses of a test case and also takes the size of the array. Then it free up
all the memory allocated within it. You can create more function as needed to ease the process. The code will be compiled and tested in Eustis server for grading. If your code does not compile in Eustis, we
conclude that your code is not compiling and it will be graded accordingly. We will apply a set of test cases to
check whether your code can produce the expected output or not. Failing each test case will reduce some grade
based on the rubric given bellow. If you hardcode the output, you will get 0 for the assignment.
learning dynamic memory allocation and fie I/O. Use fscanf with
appropriate format specifier (%d/%f/%s, etc) for reading file. It will make the process easier.