Udemy
    •  
    •  
    •  
    •  
    •  
    •  
    •  
    •  
Turn what you know into an opportunity and reach millions around the world.
Learn More
Your cart is empty.
Keep shopping
Divide and Conquer: Computing Algorithm Design Strategy
Rating: 4.2 out of 5(33 ratings)
2,936 students

Divide and Conquer: Computing Algorithm Design Strategy

Divide and Conquer, Introduction Control Abstraction, Binary search algorithm, quicksort algorithm, merge sort algorithm
Created byRutuja Jadhav
Last updated 5/2021
English

What you'll learn

  • Students will learn what is divide and conquer strategy
  • Students will learn which problems can be solved using divide and conquer strategy
  • Students will learn how to solve given problem using divide and conquer strategy

Course content

1 section5 lectures47m total length
  • Introduction1:17

    This preview lecture is simple explanation of the course designed to meet the requirements of students about Divide and Control Algorithm Design Strategy

  • Introduction to Divide and Conquer Algorithm Design Strategy3:17

    This video explains the Concept, Control Abstraction and Recurrence Relation of Divide and Conquer Algorithm Design Strategy

  • Binary Search12:09

    This video explains how Divide and Conquer Strategy is applied in order to solve Binary Search Algorithm

  • Quick Sort12:54

    This video explains how Divide and Conquer Strategy is applied in order to solve Quick Sort Algorithm

  • Merge Sort17:34

    This video explains how Divide and Conquer Strategy is applied in order to Merge Sort Algorithm

Requirements

  • Discrete Structures
  • Data Structures and Algorithms

Description


Algorithm is a finite set of instructions which when followed accomplishes a particular task. There are various algorithm design strategies such as Divide and Conquer, Greedy method, Dynamic programming, Backtracking, Branch and Bound. For solving any problem we have to choose appropriate algorithm design strategy. Depending on problem type algorithm design strategy is selected.

This course explains divide and conquer algorithm design strategy in detail .A divide-and-conquer algorithm recursively breaks down a problem into two or more sub-problems of the same or related type, until these become simple enough to be solved directly. The solutions to the sub-problems are then combined to give a solution to the original problem.

In this course, we will study  It's Introduction, control abstraction and how to solve examples such as Binary search, quicksort and merge sort using divide and conquer strategy. Divide and conquer Computing Algorithm Design Strategy is divided into 4 sessions. In first session we will study introduction, control abstraction and recurrence equation of divide and conquer strategy. In second session,  we will learn how to solve binary search algorithm using divide and conquer strategy. In third session we will learn how to solve Quick Sort Algorithm using divide and conquer strategy. In fourth session,  we will learn how Merge Sort Algorithm works using divide and conquer strategy.

So this is the compact course on divide and conquer algorithm design strategy

Who this course is for:

  • Beginners who are curious of designing algorithms