자바 LZ 78 압축 알고리즘 구현 예시 코드

LZ 78 압축 알고리즘 자바 구현
1.압축 알고리즘 의 실현
다 중 검색 트 리 를 통 해 검색 속 도 를 높이다.

package com.wretchant.lz78;

import java.util.*;

/**
          
 */
class Trie {
    private TrieNode root;

    public Trie() {
        root = new TrieNode();
        root.wordEnd = false;
    }

    public void insert(String word) {
        TrieNode node = root;
        for (int i = 0; i < word.length(); i++) {
            Character c = word.charAt(i);
            if (!node.childdren.containsKey(c)) {
                node.childdren.put(c, new TrieNode());
            }
            node = node.childdren.get(c);
        }
        node.wordEnd = true;
    }

    public boolean search(String word) {
        TrieNode node = root;
        for (int i = 0; i < word.length(); i++) {
            Character c = word.charAt(i);
            if (!node.childdren.containsKey(c)) {
                return false;
            }
            node = node.childdren.get(c);
        }
        return node.wordEnd;
    }

}

class TrieNode {
    Map<Character, TrieNode> childdren;
    boolean wordEnd;

    public TrieNode() {
        childdren = new HashMap<Character, TrieNode>();
        wordEnd = false;
    }
}

/**
    
 */
class Output {
    private Integer index;
    private Character character;

    Output(Integer index, Character character) {
        this.index = index;
        this.character = character;
    }

    public Integer getIndex() {
        return index;
    }

    public Character getCharacter() {
        return character;
    }
}

class LZencode {
    @FunctionalInterface
    interface Encode {
        List<Output> encode(String message);
    }

    /**
            
     */
    static Trie buildTree(Set<String> keys) {
        Trie trie = new Trie();
        keys.forEach(trie::insert);
        return trie;
    }

    public static final Encode ENCODE = message -> {
        //          
        List<Output> outputs = new ArrayList<>();
        Map<String, Integer> treeDict = new HashMap<>();
        int mLen = message.length();
        int i = 0;

        while (i < mLen) {
            Set<String> keySet = treeDict.keySet();
            //        
            Trie trie = buildTree(keySet);
            char messageI = message.charAt(i);
            String messageIStr = String.valueOf(messageI);
            //          
            if (!trie.search(messageIStr)) {
                outputs.add(new Output(0, messageI));
                treeDict.put(messageIStr, treeDict.size() + 1);
                i++;
            } else if (i == mLen - 1) {
                outputs.add(new Output(treeDict.get(messageIStr), ' '));
                i++;
            } else {
                for (int j = i + 1; j < mLen; j++) {
                    String substring = message.substring(i, j + 1);
                    String str = message.substring(i, j);
                    //          
                    if (!trie.search(substring)) {
                        outputs.add(new Output(treeDict.get(str), message.charAt(j)));
                        treeDict.put(substring, treeDict.size() + 1);
                        i = j + 1;
                        break;
                    }
                    if (j == mLen - 1) {
                        outputs.add(new Output(treeDict.get(substring), ' '));
                        i = j + 1;
                    }
                }
            }
        }
        return outputs;
    };


}
2.압축 풀기 알고리즘 의 실현

package com.wretchant.lz78;

import java.util.HashMap;
import java.util.List;
import java.util.Map;

public class LZdecode {


    @FunctionalInterface
    interface Decode {
        /**
         @param outputs    
         @return        
         */
        String decode(List<Output> outputs);
    }

    /**
              
     */
    public static final Decode DECODE = (List<Output> outputs) -> {
        StringBuilder unpacked = new StringBuilder();
        Map<Integer, String> treeDict = new HashMap<>();

        for (Output output : outputs) {
            Integer index = output.getIndex();
            Character character = output.getCharacter();
            if (index == 0) {
                unpacked.append(character);
                treeDict.put(treeDict.size() + 1, character.toString());
                continue;
            }
            String term = "" + treeDict.get(index) + character;
            unpacked.append(term);
            treeDict.put(treeDict.size() + 1, term);

        }

        return unpacked.toString();
    };
}
3.테스트 와 사용

package com.wretchant.lz78;

import java.io.InputStream;
import java.util.List;
import java.util.Scanner;
import java.util.function.ToIntFunction;

public class LZpack {

    public static final ToIntFunction<List<Output>> DICT_PRINT = outputs -> {
        outputs.forEach(output -> {
            System.out.println("index :" + output.getIndex() + " char :" + output.getCharacter());
        });
        return 1;
    };

    public static void main(String[] args) {

        Scanner scanner = new Scanner(System.in);
        System.out.println("Please input text ");
        String input = scanner.nextLine();

        LZencode.Encode encode = LZencode.ENCODE;
        List<Output> outputs = encode.encode(input);
        DICT_PRINT.applyAsInt(outputs);
    }
}
테스트 결 과 는 다음 과 같다.
在这里插入图片描述
4.Python 버 전의 실현 코드

def compress(message):
    tree_dict, m_len, i = {}, len(message), 0
    while i < m_len:
        # case I
        if message[i] not in tree_dict.keys():
            yield (0, message[i])
            tree_dict[message[i]] = len(tree_dict) + 1
            i += 1
        # case III
        elif i == m_len - 1:
            yield (tree_dict.get(message[i]), '')
            i += 1
        else:
            for j in range(i + 1, m_len):
                # case II
                if message[i:j + 1] not in tree_dict.keys():
                    yield (tree_dict.get(message[i:j]), message[j])
                    tree_dict[message[i:j + 1]] = len(tree_dict) + 1
                    i = j + 1
                    break
                # case III
                elif j == m_len - 1:
                    yield (tree_dict.get(message[i:j + 1]), '')
                    i = j + 1


def uncompress(packed):
    unpacked, tree_dict = '', {}
    for index, ch in packed:
        if index == 0:
            unpacked += ch
            tree_dict[len(tree_dict) + 1] = ch
        else:
            term = tree_dict.get(index) + ch
            unpacked += term
            tree_dict[len(tree_dict) + 1] = term
    return unpacked


if __name__ == '__main__':
    messages = ['ABBCBCABABCAABCAAB', 'BABAABRRRA', 'AAAAAAAAA']
    for m in messages:
        pack = compress(m)
        unpack = uncompress(pack)
        print(unpack == m)
자바 가 LZ 78 압축 알고리즘 을 실현 하 는 것 에 관 한 이 글 은 여기까지 소개 되 었 습 니 다.더 많은 자바 LZ 78 압축 알고리즘 내용 은 우리 의 이전 글 을 검색 하거나 아래 의 관련 글 을 계속 조회 하 시기 바 랍 니 다.앞으로 많은 응원 바 랍 니 다!

좋은 웹페이지 즐겨찾기