Given two sorted array of distinct integers of size n (A, B), Design a divide and conquer algorithm to return the median
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
Given two sorted array of distinct integers of size n (A, B), Design a divide and conquer algorithm to return the median
Given two sorted array of distinct integers of size n (A, B),Design a divide and conquer algorithm to return the median of thearray obtained after merging A and B, justify your algorithm andderive the runtime.