What is the time and space complexity of Huffman encoding?

时间:2018-02-03 10:29:20

标签: java time-complexity huffman-code space-complexity

I´ve implemented a Huffman encoding algorithm by using (two) Hashmaps to store each unique character´s (stored as keys in the hashmaps) frequency and code (stored as value in the hashmaps). I am unsure of how I can determine the time and space complexity, can anyone help me find out and explain what these are?

Some thoughts I have: Each unique character is stored once in each Hashmap, so is the space complexity O(2*n)=O(n)?

I´ve read that time complexity is O(nlogn) (for some solutions) but do not understand why that is.


First I build a frequency map from a string:

/**
 * builds a list of the occurring characters in a text and
 * counts the frequency of these characters
 */
public void buildFrequencyMap(String string) {
    frequencyMap = new HashMap<Character, Integer>(); //key, value
    char[] stringArray = string.toCharArray();

    for(char c : stringArray) {
        if(frequencyMap.containsKey(c)) { //if the character has not been stored yet, store it
            frequencyMap.put(c, frequencyMap.get(c) + 1);
        } else {
            frequencyMap.put(c, 1);
        }
    }
}

Then I build the tree:

/**
 * builds the huffman tree
 */
public Node buildTree() {
    PriorityQueue<Node> queue = new PriorityQueue<Node>();

    //fill the queue with nodes constructed from a character and its frequency
    for(char i = 0; i < 256; i++ ) { //256 - size of ASCII alphabet
        if(frequencyMap.containsKey(i) && frequencyMap.get(i) > 0) {
            queue.add(new Node(i, frequencyMap.get(i), null, null)); //create new leaf
        }
    }

    //if the indata only consists of 1 single character
    if(queue.size() == 1) {
        queue.add(new Node('\0', 1, null, null));
    }
    //otherwise
    //continuously merge nodes (two with the lowest frequency) to build the tree until only one node remains --> becomes the root
    while(queue.size() > 1) {
        Node left = queue.poll(); //first extracted child becomes the left child
        Node right = queue.poll(); //second extracted child becomes the right child
        Node parent = new Node('\0', (left.frequency + right.frequency), left, right);
        queue.add(parent);
    }
    return root = queue.poll(); //the remaining node in the queue becomes the root
}

Lastly, the codemap is built:

/**
 * builds the codemap
 */
public void buildCodeMap() {
    codeMap = new HashMap<Character, String>(); //key, value
    buildCode(root, "", codeMap);
}

public void buildCode(Node node, String code, HashMap<Character, String> codeMap) {
    if(!node.isLeaf()) { //if the current node is NOT a leaf
        buildCode(node.leftChild, code + '0', codeMap); //each time we go down at the LEFT side of the tree, encode a 0
        buildCode(node.rightChild, code + '1', codeMap); //each time we go down at the RIGHT side of the tree, encode a 1
    } else { //otherwise
        codeMap.put(node.character, code);
    }
}

1 个答案:

答案 0 :(得分:0)

霍夫曼编码需要O( n log n )时间,除非频率已经排序,在这种情况下需要O( n ) 时间。 n 是要编码的符号数。

请注意,插入,查找最小值或从优先级队列中删除操作中的至少一个操作是O(log n )。哪一个取决于优先级队列的实现。