Frage |
Antworten |
Quick sort uses which of the following algorithm to implement sorting? Lernen beginnen
|
|
|
|
|
What is a randomized quick sort? Lernen beginnen
|
|
quick sort with random choice of pivot
|
|
|
What is the auxiliary space complexity of randomized quick sort? Lernen beginnen
|
|
|
|
|
What is the average time complexity of randomized quick sort? Lernen beginnen
|
|
|
|
|
Randomized quick sort is an in place sort. Lernen beginnen
|
|
|
|
|
Randomized quick sort is a stable sort. Lernen beginnen
|
|
|
|
|
What is the best case time complexity randomized quick sort? Lernen beginnen
|
|
|
|
|
Which of the following is incorrect about randomized quicksort? Lernen beginnen
|
|
it cannot have a time complexity of O(n^2) in any case
|
|
|
What is the worst case time complexity of randomized quicksort? Lernen beginnen
|
|
|
|
|
Using division method, in a given hash table of size 157, the key of value 172 be placed at position ____ Lernen beginnen
|
|
|
|
|
Collisions can be reduced by choosing a hash function randomly in a way that is independent of the keys that are actually to be stored Lernen beginnen
|
|
|
|
|
What is the average retrieval time when n keys hash to the same slot? Lernen beginnen
|
|
|
|
|
Lernen beginnen
|
|
A data structure used to store key-value pairs
|
|
|
How does a hash table work? Lernen beginnen
|
|
It uses a hash function to map keys to array indices
|
|
|
What is the time complexity of inserting an element in a hash table? Lernen beginnen
|
|
|
|
|
What is the worst-case time complexity of searching for an element in a hash table? Lernen beginnen
|
|
|
|
|
What happens if two keys hash to the same index in a hash table? Lernen beginnen
|
|
|
|
|
Depth First Search is equivalent to which of the traversal in the Binary Trees? Lernen beginnen
|
|
|
|
|
Time Complexity of DFS is? (V – number of vertices, E – number of edges) Lernen beginnen
|
|
|
|
|
The Data structure used in standard implementation of Breadth First Search is? Lernen beginnen
|
|
|
|
|
The Depth First Search traversal of a graph will result into? Lernen beginnen
|
|
|
|
|
When the Depth First Search of a graph is unique? Lernen beginnen
|
|
When the graph is a Linked List
|
|
|
In Depth First Search, how many times a node is visited? Lernen beginnen
|
|
Equivalent to number of indegree of the node
|
|
|