Analyze the following recurrences and show their time complexity functions using (1) iteration method and (2) Master Theorem.
1. ?(?) = 2?(? 4 ) + 3
2. ?(?) = 3?(? 4 ) + 2?
Analyze the following recurrences and show their time complexity functions using (1) iteration method and (2)...