Page 1 of 1

Three algorithms A, B and C can be used for finding one problem’s solution. Algorithm A for an n size problem, solves re

Posted: Mon May 09, 2022 7:03 am
by answerhappygod
Three algorithms A, B and C can be used for finding one
problem’s solution. Algorithm A for an n size problem, solves
recursively 8 sub-problems of size n/2 and then combines the
solutions in time n Algorithm B for an n size problem, solves
recursively 3 sub-problems of size n/3 and then combines the
solutions in time n3 Algorithm C for an n size problem, solves
recursively a problem of size n-1 and then combines the solutions
in time n Find Complexity Times for each algorithm and then choose
the best algorithm for the problem.