DSA Flashcards
Which data structures support random access?
Arrays (no order), ArrayLists (no order), ArrayLists (ordered)
Which data structures do not support random access?
LinkedLists (ordered and unordered), Stacks, Queues, Binary Trees, HashSets, Heaps
What is the BigO notation for adding items to a Binary Tree
O(logn)
Type of Ordering for an Array (no order)
None
Type of Ordering for an ArrayList (no order)
None
Type of Ordering for an ArrayList (ordered)
User Defined
Type of Ordering for a LinkedList (no order)
None
Type of Ordering for a LinkedList (ordered)
User defined
Type of Ordering for a Stack
Data Structure defined (LIFO)
Type of Ordering for a Queue
Data Structure defined (FIFO)
Type of Ordering for a Binary Tree
User defined
Type of Ordering for a HashSet
None
Type of Ordering for a Heap
User defined for the Top only
What type of search is supported for Arrays (no order? What is the BigO?
Type: Linear BigO: O(n) - iterates through every element until you find what you are looking for
What type of search is supported for ArrayLists (no order) ? What is the BigO?
Type: Linear BigO: O(n) - iterates through every element until you find what you are looking for
What type of search is supported for ArrayLists (ordered) ? What is the BigO?
Type: Binary BigO: O(logN) - it divides the search in half with each iteration
What type of search is supported for LinkedLists (no order) ? What is the BigO?
Type: Linear BigO: O(n) - iterates through every element until you find what you are looking for
What type of search is supported for LinkedLists (ordered) ? What is the BigO?
Type: Linear BigO: O(n) - iterates through every element until you find what you are looking for
What type of search is supported for Stacks ? What is the BigO?
Type: Search is not supported. You can only look at the top of the Stack.
What type of search is supported for Queues? What is the BigO?
Type: Search is not supported. You can only look at the front of the Queue.
What type of search is supported for Binary Trees? What is the BigO?
Type: Binary BigO: O(logN) - it divides the search in half with each iteration
What type of search is supported for HashSets? What is the BigO?
Type: Lookup BigO: O(1) - it goes straight to the bucket and looks only in that bucket
What type of search is supported for Heaps? What is the BigO?
Type: Search is not supported. You can only look at the top of the Heap. BigO: O(1)
Is the size fixed or dynamic for Arrays (no order)? BigO if dynamic?
Fixed
Is the size fixed or dynamic for ArrayLists (no order)? BigO if dynamic?
Dynamic. BigO: O(n) - auto resize the ArrayList
Is the size fixed or dynamic for ArrayLists (ordered)? BigO if dynamic?
Dynamic. BigO: O(n) - auto resize the ArrayList
Is the size fixed or dynamic for LinkedLists (no order)? BigO if dynamic?
Dynamic. BigO: O(1)
Is the size fixed or dynamic for LinkedLists (ordered)? BigO if dynamic?
Dynamic. BigO: O(1)
Is the size fixed or dynamic for Stacks? BigO if dynamic?
Dynamic. BigO: O(1)
Is the size fixed or dynamic for Queues? BigO if dynamic?
Dynamic. BigO: O(1)
Is the size fixed or dynamic for Binary Trees? BigO if dynamic?
Dynamic. BigO: O(1)
Is the size fixed or dynamic for HashSets? BigO if dynamic?
Dynamic. Auto resize. BigO: O(n) - bucket resizing
Is the size fixed or dynamic for Heaps? BigO if dynamic?
Dynamic. Might need to resize if full. BigO: O(n)
Can you add an item at any location for Arrays (no order)? BigO?
Yes, until the array is full. BigO: O(n)
Can you add an item at any location for a ArrayLists (no order)? BigO?
Yes. BigO: O(n)
Can you add an item at any location for ArrayLists (ordered)? BigO?
Yes. BigO: O(n)
Can you add an item at any location for LinkedLists (no order)? BigO?
Yes. BigO: O(1)
Can you add an item at any location for LinkedLists (ordered)? BigO?
Yes. BigO: O(1)
Can you add an item at any location for Stacks? BigO?
Yes. BigO: O(1)
Can you add an item at any location for Queues? BigO?
Yes. BigO: O(1)
Can you add an item at any location for Binary Trees? BigO?
Yes. BigO: O(1)
Can you add an item at any location for HashSets? BigO?
Yes. BigO: O(1)
Can you add an item at any location for Heaps? BigO?
Yes. BigO: O(logN) - needs to be reordered
Can you remove an item once it has been found for Arrays (no order)? BigO?
Yes. BigO: O(n) - items need to shift
Can you remove an item once it has been found for ArrayList (no order)? BigO?
Yes. BigO: O(n) - items need to shift
Can you remove an item once it has been found for ArrayList (ordered)? BigO?
Yes. BigO: O(n) - items need to shift
Can you remove an item once it has been found for LinkedList (no order)? BigO?
Yes. BigO: O(1)
Can you remove an item once it has been found for LinkedList (ordered)? BigO?
Yes. BigO: O(1)
Can you remove an item once it has been found for Stacks? BigO?
Yes. BigO: O(1)
Can you remove an item once it has been found for Queues? BigO?
Yes. BigO: O(1)
Can you remove an item once it has been found for Binary Trees? BigO?
Yes. BigO: O(log N) - need to find the node
Can you remove an item once it has been found for HashSets? BigO?
Yes. BigO: O(1)
Can you remove an item once it has been found for Heaps? BigO?
Yes. BigO: O(log N) - Reorder is required
Do Sets have duplicate properties?
No
Do Sets have the notion of position?
No. You cannot ask for the first element of a set.
Maps do not allow duplicate keys
True
Maps do not allow duplcate values
False