mirror of
https://github.com/TheAlgorithms/Java.git
synced 2026-03-13 08:40:43 +08:00
12 lines
242 B
Java
12 lines
242 B
Java
|
|
public class compressclient {
|
|
|
|
public static void main(String[] args) {
|
|
|
|
HEncoder h= new HEncoder("aaaabbbcccccccccccdddd");
|
|
System.out.println(h.compress("aabccd"));
|
|
System.out.println(h.decompress("101011000111"));
|
|
}
|
|
|
|
}
|