1/53
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
Avg Access Time Array
Θ(1)
Avg Search Time Array
Θ(n)
Avg Insertion Time Array
Θ(n)
Avg Deletion Time Array
Θ(n)
Worst Access Time Array
O(1)
Worst Search Time Array
O(n)
Worst Insertion Time Array
O(n)
Worst Deletion Time Array
O(n)
Worst Space Array
O(n)
Avg Access Time Stack
Θ(n)
Avg Search Time Stack
Θ(n)
Avg Insertion Time Stack
Θ(1)
Avg Deletion Time Stack
Θ(1)
Worst Access Time Stack
O(n)
Worst Search Time Stack
O(n)
Worst Insertion Time Stack
O(1)
Worst Deletion Time Stack
O(1)
Worst Space Stack
O(n)
Avg Access Time Queue
Θ(n)
Avg Search Time Queue
Θ(n)
Avg Insertion Time Queue
Θ(1)
Avg Deletion Time Queue
Θ(1)
Worst Access Time Queue
O(n)
Worst Search Time Queue
O(n)
Worst Insertion Time Queue
O(1)
Worst Deletion Time Queue
O(1)
Worst Space Queue
O(n)
Avg Access Time Singly-Linked List
Θ(n)
Avg Search Time Singly-Linked List
Θ(n)
Avg Insertion Time Singly-Linked List
Θ(1)
Avg Deletion Time Singly-Linked List
Θ(1)
Worst Access Time Singly-Linked List
O(n)
Worst Search Time Singly-Linked list
O(n)
Worst Insertion Time Singly-Linked List
O(1)
Worst Deletion Time Singly-Linked list
O(1)
Worst Space Singly-Linked List
O(n)
Avg Access Time Hash Table
N/A
Avg Search Time Hash Table
Θ(1)
Avg Insertion Time Hash Table
Θ(1)
Avg Deletion Time Hash Table
Θ(1)
Worst Access Time Hash Table
N/A
Worst Search Time Hash Table
O(n)
Worst Insertion Time Hash Table
O(n)
Worst Deletion Time Hash Table
O(n)
Worst Space Hash Table
O(n)
Avg Access Time Binary Search Tree
Θ(log(n))
Avg Search Time Binary Search Tree
Θ(log(n))
Avg Insertion Time Binary Search Tree
Θ(log(n))
Avg Deletion Time Binary Search Tree
Θ(log(n))
Worst Access Time Binary Search Tree
O(n)
Worst Search Time Binary Search Tree
O(n)
Worst Insertion Time Binary Search Tree
O(n)
Worst Deletion Time Binary Search Tree
O(n)
Worst Space Binary Search Tree
O(n)