Need Help ?

Home / Expert Answers / Other / 1-generate-n-gt-10-random-values-from-1-to-100-using-a-uniform-probability-distribution-n-is-entered

(Solved): 1.Generate N>10 random values from 1 to 100 using a uniform probability distribution. ...



1.Generate N>10 random values from 1 to 100 using a uniform probability distribution. N is entered by the user. The first 5 values are put into nodes and added to a priority queue based on their value. Each node also contains a list of values. After the first 5 are inserted into the priority queue the rest of the values are added to the lists with the initial node being the delimiter as the maximum value. This defines an interval from the previous node to that value. The range for the first value is 1 to is value Display the contents of the Priority Queue as below:

For example if the values were
5, 55, 22, 14, 98, 23, 99, 40, 7, 55, 25, 9, 66

The PQueue would have interval nodes 5, 14, 22, 55, 98 the entire contents would be

Node 5 has NO entries
Node 14 has values 7, 9 (( values greater than 5 but <= 14))
Node 22 has NO values
Node 55 has value 23, 55
Node 98 has value 66

The value 99 does not appear since it does fall within any of the intervals


We have an Answer from Expert

View Expert Answer

Expert Answer


#include <iostream>#include <random>#include <queue>#include <list>using namespace
We have an Answer from Expert

Buy This Answer $4

Place Order