A def func_two (stack1, stack2): result = True num_ops = 5 # If the stacks are the same size, then we can do this comparison if stack1.get_size() == stack2.get_size(): # We create an array to hold the data from one stack, and an array to hold data from the other tmp_data = [] tmp_stack = Stack() num_ops += 5 # We could use an array for each one if we wished, but for simplicity in returning, we choose the stack # Iterate through stack2, storing all values in tmp_data while stack2.get_size() > 0: A A A tmp_data.append(stack2.pop()) num_ops += 5 # Iterate through stack1, searching tmp_data for each item num_ops += 3 while stack1.get_size() > 0: item stack1.pop() num_ops += 3 + len(tmp_data) | else: if item in tmp_data: tmp_stack.push(item) num_ops += 1 else: result = False stack1.push(item) num_ops += 2 break num_ops += 3 # Rebuild both stacks num_ops += 3 while tmp_stack.get_size() > 0: stack1.push(tmp_stack.pop()) num_ops += 5 num_ops += 3 for i in range (len (tmp_data) - 1, -1, -1): stack2.push(tmp_data[i]) num_ops += 3 result = False num_ops += 1 print("This call took %d operations" % num_ops) return result

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Can you please tell me the big O notation for this function?

H
A
F
A
A
A
F
A
def func_two (stack1, stack2):
result = True
A
num_ops = 5
# If the stacks are the same size, then we can do this comparison
if stack1.get_size() == stack2.get_size():
# We create an array to hold the data from one stack, and an array to hold data from the other
tmp_data = []
tmp_stack = Stack()
num_ops += 5
# We could use an array for each one if we wished, but for simplicity in returning, we choose the stack
# Iterate through stack2, storing all values in tmp_data
while stack2.get_size() > 0:
tmp_data.append(stack2.pop())
num_ops += 5
# Iterate through stack1, searching tmp_data for each item
num_ops += 3
while stack1.get_size() > 0:
else:
item = stack1.pop()
num_ops += 3 + len(tmp_data) |
if item in tmp_data:
tmp_stack.push(item)
num_ops += 1
else:
result = False
stack1.push(item)
num_ops += 2
break
num_ops += 3
# Rebuild both stacks
num_ops += 3
while tmp_stack.get_size() > 0:
stack1.push(tmp_stack.pop())
num_ops += 5
num_ops += 3
for i in range (len (tmp_data) - 1, -1, -1):
stack2.push(tmp_data[i])
num_ops += 3
result = False
num_ops += 1
print("This call took %d operations" % num_ops)
return result
Transcribed Image Text:H A F A A A F A def func_two (stack1, stack2): result = True A num_ops = 5 # If the stacks are the same size, then we can do this comparison if stack1.get_size() == stack2.get_size(): # We create an array to hold the data from one stack, and an array to hold data from the other tmp_data = [] tmp_stack = Stack() num_ops += 5 # We could use an array for each one if we wished, but for simplicity in returning, we choose the stack # Iterate through stack2, storing all values in tmp_data while stack2.get_size() > 0: tmp_data.append(stack2.pop()) num_ops += 5 # Iterate through stack1, searching tmp_data for each item num_ops += 3 while stack1.get_size() > 0: else: item = stack1.pop() num_ops += 3 + len(tmp_data) | if item in tmp_data: tmp_stack.push(item) num_ops += 1 else: result = False stack1.push(item) num_ops += 2 break num_ops += 3 # Rebuild both stacks num_ops += 3 while tmp_stack.get_size() > 0: stack1.push(tmp_stack.pop()) num_ops += 5 num_ops += 3 for i in range (len (tmp_data) - 1, -1, -1): stack2.push(tmp_data[i]) num_ops += 3 result = False num_ops += 1 print("This call took %d operations" % num_ops) return result
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Stack
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
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education