Assume you have a 2D matrix. Values are sorted in ascending order from left to write and top to bottom, e.g., 1 7 16 21 34 4 9 20 25 41 6 16 31 33 44 11 19 49 50 61 I'm curious if my value x is in this matrix. I could take a brute force approach, considering all cells via the following code: def find in matrix(m, num_rows, num cols, x): for į in range(num_rows): for j in range(num cols): if m[i]i]==x: return True return False What would be the big O estimate of the run-time for this brute force approach? How could I take a divide-and-conquer approach? Briefly describe (in words) how you could use what is known about the structure of the 2D matrix to divide and conquer.

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter15: Recursion
Section: Chapter Questions
Problem 18SA
icon
Related questions
Question

Please use python if applicable and comment on code, thank you

Assume you have a 2D matrix. Values are sorted in ascending order from left to write and top to bottom,
e.g.,
1
7
16
21
34
4
9
20
25
41
16
31
33
44
11
19
49
50
61
I'm curious if my value x is in this matrix.
I could take a brute force approach, considering all cells via the following code:
def find in matrix(m, num rows, num cols, x):
for į in range(num rows):
for j in range(num cols):
if m[i]i)==x:
return True
return False
What would be the big O estimate of the run-time for this brute force approach?
How could I take a divide-and-conquer approach? Briefly describe (in words) how you could use what is
known about the structure of the 2D matrix to divide and conquer.
Transcribed Image Text:Assume you have a 2D matrix. Values are sorted in ascending order from left to write and top to bottom, e.g., 1 7 16 21 34 4 9 20 25 41 16 31 33 44 11 19 49 50 61 I'm curious if my value x is in this matrix. I could take a brute force approach, considering all cells via the following code: def find in matrix(m, num rows, num cols, x): for į in range(num rows): for j in range(num cols): if m[i]i)==x: return True return False What would be the big O estimate of the run-time for this brute force approach? How could I take a divide-and-conquer approach? Briefly describe (in words) how you could use what is known about the structure of the 2D matrix to divide and conquer.
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 1 images

Blurred answer
Knowledge Booster
Module hierarchy chart
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning