Info2

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/6

flashcard set

Earn XP

Description and Tags

Info2 FS2026

Last updated 3:07 PM on 5/30/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

7 Terms

1
New cards

T(n) = a * T(n/b) + f(n)

f(n) = O( nlogb(a) - ε )

T(n) = Θ( nlogb(a) )

2
New cards

T(n) = a⋅T(n/b) + f(n)

f(n) = Θ( nlogb(a) )

T(n) = Θ( nlogb(a) ⋅ logb(n) )

3
New cards

T(n) = a⋅T(n/b) + f(n)

f(n) = O( nlogb(a) + ε )

a⋅f(n/b) ≤ c⋅f(n) for some c ∈ (0,1)

T(n) = Θ( f(n) )

4
New cards

MergeSort

Θ( n⋅log2(n) )

5
New cards

HeapSort

Θ( n⋅log2(n) )

6
New cards

QuickSort

Worst: Θ( n2 )
Best: Θ( n⋅log2(n) )

7
New cards

Bubble, Selection, InsertionSort

Θ( n2 )