What is the order of selection sort?
Answer / Dinesh Singh Chauhan
Selection sort has a linear order of O(n^2), where n is the number of items being sorted. In each step, it finds the minimum element from the unsorted part and places it at the right position in the sorted part.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the bucket size, when the overlapping and collision occur at the same time?
What are the categories of avl rotations?
Does set allow null values?
What is a 2 dimensional array?
How to compare Two Arrays?
Define double hashing?
Why is null not allowed in concurrenthashmap?
What does abstract data type mean?
What is sorting an array?
Why might quick sort might be better than merge sort?
What does sorting an array do?
Q#1: An algorithm is made up of 2 modules M1 and M2.If order of M1 is F(n) and order of M2 is g (n) then what is the order of the algorithm. Q # 2 : How many binary trees are possible with 3 nodes? with 4 nodes?