Computer Science, asked by dhalsmita45, 4 months ago

the time complexity of human coding algorithm is

Answers

Answered by Anonymous
1

The time complexity of the Huffman algorithm is O(nlogn). Using a heap to store the weight of each tree, each iteration requires O(logn) time to determine the cheapest weight and insert the new weight. There are O(n) iterations, one for each item.

Similar questions