I have two algorithms with time complexities of O(n log n) and O(n log3 n).
Which of these algorithms is more efficient? for example this case, as they seem so close? Or am I right in thinking that in terms of complexity they are equal as they are the same rate of growth?
O(n log n) and O(n log3 n) are the same thing.