Home MCQs SSC Computer Science Question #1121
Back to Questions
SSC Computer Science QUESTION #1121
Question 1
What is the correct data structure for implementing Huffman algorithm?
  • Priority queue✔️
  • Linked list
  • Binary Tree
  • None of these
Correct Answer Explanation
Huffman coding uses a Priority Queue to efficiently select the two nodes with the lowest frequencies to build the Huffman tree.