Page 1 of 1

Algorithm Design

Posted: Mon Mar 21, 2022 4:48 pm
by answerhappygod
Algorithm Design
Algorithm Design 1
Algorithm Design 1 (62.09 KiB) Viewed 44 times
2. T(n) represents the efficiency of the algorithm when the problem size is n. which of the following algorithms is the most efficient? A. T(n)=T(n-1)+1, T(1)=1 B. T(n)= 2n2 C. T(n)=T(n/2)+1, T(1)=1 D.T(n)=3nlogen 3. What is algorithm? What are the characteristics of algorithm? 4. Please prove that the following relationship is established: (1) 10n? – 2n= (n?) (2) 2n+1 = @(2") 5. There is an array a containing n (n>2) integers. Please design an algorithm to judge whether there are elements that appear more than half of all elements.