1/4
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
What is the big o notation for a program that has no loops
o(1)
what is the big o notation for a program that conducts a binary search / halves the dataset
o(log n)
what is the big o notation for a program that has a for / while loop in it
o(n)
what is the big o notation for a program that has a nested loop in it
o(nnumber of loops)
what is the big o notation for a program that is recursive & calls itself twice like the fibonacci sequence
O(2n)