From d2c25b97301b53796683812f14daec2fb8ef80eb Mon Sep 17 00:00:00 2001 From: Ankit Kumar Date: Sat, 27 Sep 2025 09:55:29 +0530 Subject: [PATCH] Add Ankit Kumar changes in course 1 Add Ankit kumar changes --- Course1 | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/Course1 b/Course1 index 2fe30ca6..ba9f03c5 100644 --- a/Course1 +++ b/Course1 @@ -4,9 +4,7 @@ You can choose one module from the list below:- 2)Divide and Conquer Algorithms 3)Dynamic Programming - -Pawan Dubey -Dynamic Programming -Understanding the prolem and implementing a solution which is space and time efficient by structuring it into sub problems. - +Ankit Kumar +2 Divide and Conquer Algorithms +Divide and conquer is a classic algorithmic strategy that breaks a complex problem into smaller, similar subproblems, solves each one recursively, and then combines the results to obtain the final solution. This approach simplifies challenging tasks and often improves efficiency. Well known examples include merge sort, quick sort, and binary search. It is also used in advanced algorithms like the fast Fourier transform and closest pair of points. By reducing the size of problems at each step, divide and conquer often achieves better time complexity, such as O(n log n), though it may require extra memory for recursion and merging.