1.

Consider an array consisting of ve and +ve numbers. What would be the worst case time complexity of an algorithm to segregate the numbers having same sign altogether i.e all +ve on one side and then all -ve on the other ?

A. O(N)
B. O(N Log N)
C. O(N * N)
D. O(N Log Log N)
Answer» B. O(N Log N)


Discussion

No Comment Found