Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Question 1.8 def func(alist): for num in range(len(alist)-1,0,-1): for i in range(num): ti 1, alisti if alist[i] > alist[i+1]: alist[i], alist[i+1] = alist[i+1], alist Question

image text in transcribed
image text in transcribed
Question 1.8 def func(alist): for num in range(len(alist)-1,0,-1): for i in range(num): ti 1, alisti if alist[i] > alist[i+1]: alist[i], alist[i+1] = alist[i+1], alist Question 1.9 def func(n): for i in range(0,n): for j in range (i+1, i, -1): for k in range(n, j, -1): print("print") Kinds of Growth Here are some common orders of growth, ranked from no growth to fastest growth 1. e(1) constant time takes the same amount of time regardless of input size 2. (log n)-logarithmic time 3. e(n)-linear time 40(n log n)-linearithmic time 60(n3 ), polynomial time 7.0(2), (3"), etc.-exponential time (considered "intractable", these are really, really horrible) 8. Something else not listed etc

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions