You are on page 1of 2

Data Structure Method Big-O Notation

Linked List Index O(n)

Insert O(n)

Min O(n)

Identical O(n)

Max O(n)

Clean O(n2)

_linear_search O(n)

Remove_many O(n)

_len_ O(1)

Union O(n2)

Count O(n)

_contains_ O(n)

Intersection O(n2)

Remove O(n)

Combine O(n)

Peek O(1)

Find O(n)

Split O(n)

Is_empty O(1)

Insert_front O(1)

Linked Sorted List Split O(n)

Count O(n)
Remove O(n)

Find O(n)

Index O(n)

Identical O(n)

Min O(1)

_linear_search O(n)

Combine O(n)

Peek O(1)

Insert O(n)

Union O(n)

Intersection O(n)

Max O(n)

Clean O(n)

_contains_ O(n)

is_empty O(1)

_len_ O(1)

You might also like