How to resolve the algorithm Averages/Median step by step in the Prolog programming language
How to resolve the algorithm Averages/Median step by step in the Prolog programming language
Table of Contents
Problem Statement
Write a program to find the median value of a vector of floating-point numbers. The program need not handle the case where the vector is empty, but must handle the case where there are an even number of elements. In that case, return the average of the two middle values. There are several approaches to this. One is to sort the elements, and then pick the element(s) in the middle. Sorting would take at least O(n logn). Another approach would be to build a priority queue from the elements, and then extract half of the elements to get to the middle element(s). This would also take O(n logn). The best solution is to use the selection algorithm to find the median in O(n) time. Quickselect_algorithm
Let's start with the solution:
Step by Step solution about How to resolve the algorithm Averages/Median step by step in the Prolog programming language
Source code in the prolog programming language
median(L, Z) :-
length(L, Length),
I is Length div 2,
Rem is Length rem 2,
msort(L, S),
maplist(sumlist, [[I, Rem], [I, 1]], Mid),
maplist(nth1, Mid, [S, S], X),
sumlist(X, Y),
Z is Y/2.
You may also check:How to resolve the algorithm Averages/Root mean square step by step in the PicoLisp programming language
You may also check:How to resolve the algorithm JortSort step by step in the Wren programming language
You may also check:How to resolve the algorithm Temperature conversion step by step in the Sidef programming language
You may also check:How to resolve the algorithm Count occurrences of a substring step by step in the BASIC programming language
You may also check:How to resolve the algorithm Equilibrium index step by step in the BBC BASIC programming language