Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
148 views
in Technique[技术] by (71.8m points)

java - What is the time complexity of this priorityQueue

I have the below code, I wanted to know what is the time complexity of this code when I am using PriorityQueue.

I have a listOfNumbers of size N

Queue<Integer> q = new PriorityQueue<>();
q.addAll(listOfNumbers);

while(q.size()>1) {
    q.add(q.poll()+q.poll()); // add sum of 2 least elements back to Queue
}

As per this post : Time Complexity of Java PriorityQueue (heap) insertion of n elements?

O(log n) time for the enqueing and dequeing methods (offer, poll, remove() and add)

Now how to calculate the time when I am adding the element back to Queue again.

question from:https://stackoverflow.com/questions/66064093/what-is-the-time-complexity-of-this-priorityqueue

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

The running time of your program is log(n) + log(n-1) + ... + log(1).

This is log(n!) (by repeated application of the log rule log(a) + log(b) = log(ab)).

log(n!) is Theta(n log n) see Is log(n!) = Θ(n·log(n))?

So your program runs in Theta(n log n) time.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...