Kennesaw State University CS 4491 Assignment 3
Kennesaw State University Department of Computer Science Advanced Topic in Computer Science CS 4491/2 Assignment #3: Complex Numbers and Linked List Dalibor Labudovic 02/19/2013 Initial Problem Statement: 1.) Using the structure previously defined, struct ComplexNum, develop a C program that performs complex addition, subtraction, multiplication, and division of the complex values of the elements of array x with the complex values of the elements in array y. Include a function for each complex operation that returns a new array with the results. 2.) Design and implement in C a linked list in which each node presents a fight stop in a route to a destination. The data in each node is the airport code (an integer number). The airline can add or delete intermediate flight stops. It can also calculate and display the number of stops form the starting to the destination airport. Summary and Purpose of the Assignment Activity: T...