CS 261 - complexity questions

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/18

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

19 Terms

1
New cards

heap sort of bag implemented as dynamic arary?

o(n log n)

2
New cards

remove “single” of implemnted as dyamic array?

o(log n)

3
New cards

contains of bag implemented as dynamic array?

o(n)

4
New cards

contains of avl tree?

o (log n)ad

5
New cards

add of hash table with linked lists, when the table size if m =/= 0?

o(1)Inserting an element into a hash table with linked lists typically has an average time complexity of O(1), assuming a good hash function and low load factor. r

6
New cards

remove of “single” of hash table with linked lists, when the table size if m=/= 0?

o(n/m)

7
New cards

add of stack implemented as dynamic array?

o(1)Adding an element to a stack implemented as a dynamic array typically has an average time complexity of O(1), assuming no resizing is necessary.

8
New cards

remove of a queue implemented as double linked list?

o(1)

9
New cards

remove of queue implemented as deque, where deque is implmented as dynamic array?

o(1)

10
New cards

remove “single” of avl tree?

o(log n)

11
New cards

balance a node of avl tree?

o(1)

12
New cards

depth-first printing of nodes of avl tree

o(n)

13
New cards

avl sort of bag implmented as double linked list?

o(n log n)

14
New cards

convert bag to heap, where both bag and heap re implemented as dynamic array?

o(n log n)

15
New cards

remove “all” of avl tree?

o(log n)

16
New cards

remove operation of heap implemented as a dynamic array?

o(log n)

17
New cards

finding a data element in bag implemented as a dynamic array?

o(n)

18
New cards

add operation of hash table with chaining, when the table size is m?

o(1)ad

19
New cards

add operation of sorted bag implemented as a dynamic array?

(O(logn) + o(n) = o (n)