Why the time complexity O ( N*Log( N ) ) is considered polynomial time?

698 views

Why the time complexity O ( N*Log( N ) ) is considered polynomial time?

In: Mathematics

3 Answers

Anonymous 0 Comments

In short: polynomial time complexity is any complexity function that can be bound by a polynomial function. log(N) < N (for large values of N), so N*log(N) can be bound by the polynomial function N^(2), making it polynomial time.

You are viewing 1 out of 3 answers, click here to view all answers.