Given a list lista of numbers write a program that


Given a list listA of numbers, write a program that generates a new list listB with the same number of elements as listA, such that each element in the new list is the average of its neighbors and itself in the original list. For example, if listA = [5, 1, 3, 8, 4], listB = [3.0, 3.0, 4.0, 5.0, 6.0], where the values in listB were computed as follows:

(5 + 1)/2 = 3.0
(5 + 1 + 3)/3 = 3.0
(1 + 3 + 8)/3 = 4.0
(3 + 8 + 4)/3 = 5.0
(8 + 4)/2 = 6.0

listA can be hardcoded at the begining of your program, but the solution should work for other lists as well (in particular if we modify the values of the list, the program should work with the new values).

Sample run:

listA = [5, 1, 3, 8, 4]

listB = [3.0, 3.0, 4.0, 5.0, 6.0]

Solution Preview :

Prepared by a verified Expert
C/C++ Programming: Given a list lista of numbers write a program that
Reference No:- TGS01206928

Now Priced at $10 (50% Discount)

Recommended (96%)

Rated (4.8/5)