All Courses

Python - Divide and Conquer

Sanjeev Shah

2 years ago

Divide and conquer in Python | insideAIML
Table of Contents
  • Introduction
  • Divide/Break
  • Conquer/Solve
  • Merge/Combine
  • Example
            Binary Search implementation

Introduction

          In the divide and conquer approach, the problem in hand is divided into smaller sub-problems and then each problem is solved independently. When we keep on dividing the subproblems into even smaller sub-problems, we may eventually reach a stage where no more division is possible. Those "atomic" smallest possible sub-problem (fractions) are solved. The solution of all sub-problems is finally merged in order to obtain the solution of an original problem.
Broadly, we can understand divide-and-conquer approach in a three-step process.

1. Divide/Break

          This step involves breaking the problem into smaller sub-problems. Sub-problems should represent a part of the original problem. This step generally takes a recursive approach to divide the problem until no sub-problem is further divisible. At this stage, sub-problems become atomic in nature but still represent some part of the actual problem.

2. Conquer/Solve

          This step receives a lot of smaller sub-problems to be solved. Generally, at this level, the problems are considered 'solved' on their own.

3. Merge/Combine

          When the smaller sub-problems are solved, this stage recursively combines them until they formulate a solution of the original problem. This algorithmic approach works recursively and conquer & merge steps works so close that they appear as one.

Example

          The following program is an example of a divide-and-conquer programming approach where the binary search is implemented using python.

Binary Search implementation

          In binary search, we take a sorted list of elements and start looking for an element in the middle of the list. If the search value matches the middle value in the list we complete the search. Otherwise, we eliminate half of the list of elements by choosing whether to proceed with the right or left half of the list depending on the value of the item searched. This is possible as the list is sorted and it is much quicker than linear search. Here we divide the given list and conquer by choosing the proper half of the list. We repeat this approach until we find the element or conclude about its absence on the list.

def bsearch(list, val):

    list_size = len(list) - 1

    idx0 = 0
    idxn = list_size
# Find the middle most value

    while idx0 <= idxn:
        midval = (idx0 + idxn)// 2

        if list[midval] == val:
            return midval
# Compare the value the middle most value
        if val > list[midval]:
            idx0 = midval + 1
        else:
            idxn = midval - 1

    if idx0 > idxn:
        return none
# Initialize the sorted list
list = [2,7,19,34,53,72]

# Print the search result
print(bsearch(list,72))
print(bsearch(list,11))
When the above code is executed, it produces the following result:
5

none
I hope you enjoyed reading this article and finally, you came to know about Python - Divide and conquer.
     
To know more about python programming language follow the insideaiml youtube channel.  
For more such blogs/courses on data science, machine learning, artificial intelligence and emerging new technologies do visit us at InsideAIML.
Thanks for reading…
Happy Learning…

Submit Review