For a given problem with input size n, Algorithms A,B,C are executed. In terms of running time, one of the algorithms is O(n), one O(nlogn) and one O(n^2). Some measured running times of these algorithms are given below
Input Size
512 1024 2048
A 70 134 262
B 135 517 2053
C 42 86 182
Identify which algorithm is which and explain the observed running times. Which algorithm would you select for different values of n
Please help me with the above question. Thanks