Move-to-front transform
   HOME

TheInfoList



OR:

The move-to-front (MTF) transform is an encoding of
data In the pursuit of knowledge, data (; ) is a collection of discrete values that convey information, describing quantity, quality, fact, statistics, other basic units of meaning, or simply sequences of symbols that may be further interpret ...
(typically a stream of
byte The byte is a unit of digital information that most commonly consists of eight bits. Historically, the byte was the number of bits used to encode a single character of text in a computer and for this reason it is the smallest addressable uni ...
s) designed to improve the performance of
entropy encoding In information theory, an entropy coding (or entropy encoding) is any lossless data compression method that attempts to approach the lower bound declared by Shannon's source coding theorem, which states that any lossless data compression method ...
techniques of compression. When efficiently implemented, it is fast enough that its benefits usually justify including it as an extra step in data compression
algorithm In mathematics and computer science, an algorithm () is a finite sequence of rigorous instructions, typically used to solve a class of specific problems or to perform a computation. Algorithms are used as specifications for performing ...
. This algorithm was first published by B. Ryabko under the name of "book stack" in 1980. Subsequently, it was rediscovered by J.K. Bentley et al. in 1986, as attested in the explanatory note.


The transform

The main idea is that each symbol in the data is replaced by its index in the stack of “recently used symbols”. For example, long sequences of identical symbols are replaced by as many zeroes, whereas when a symbol that has not been used in a long time appears, it is replaced with a large number. Thus at the end the data is transformed into a sequence of integers; if the data exhibits a lot of local correlations, then these integers tend to be small. Let us give a precise description. Assume for simplicity that the symbols in the data are
byte The byte is a unit of digital information that most commonly consists of eight bits. Historically, the byte was the number of bits used to encode a single character of text in a computer and for this reason it is the smallest addressable uni ...
s. Each byte value is encoded by its index in a
list A ''list'' is any set of items in a row. List or lists may also refer to: People * List (surname) Organizations * List College, an undergraduate division of the Jewish Theological Seminary of America * SC Germania List, German rugby unio ...
of bytes, which changes over the course of the algorithm. The list is initially in order by byte value (0, 1, 2, 3, ..., 255). Therefore, the first byte is always encoded by its own value. However, after encoding a byte, that value is moved to the front of the list before continuing to the next byte. An example will shed some light on how the transform works. Imagine instead of bytes, we are encoding values in a–z. We wish to transform the following sequence: bananaaa By convention, the list is initially (abcdefghijklmnopqrstuvwxyz). The first letter in the sequence is b, which appears at index 1 (the list is indexed from 0 to 25). We put a 1 to the output stream: 1 The b moves to the front of the list, producing (bacdefghijklmnopqrstuvwxyz). The next letter is a, which now appears at index 1. So we add a 1 to the output stream. We have: 1,1 and we move the letter a back to the top of the list. Continuing this way, we find that the sequence is encoded by: 1,1,13,1,1,1,0,0 It is easy to see that the transform is reversible. Simply maintain the same list and decode by replacing each index in the encoded stream with the letter at that index in the list. Note the difference between this and the encoding method: The index in the list is used directly instead of looking up each value for its index. i.e. you start again with (abcdefghijklmnopqrstuvwxyz). You take the "1" of the encoded block and look it up in the list, which results in "b". Then move the "b" to front which results in (bacdef...). Then take the next "1", look it up in the list, this results in "a", move the "a" to front ... etc.


Implementation

Details of implementation are important for performance, particularly for decoding. For encoding, no clear advantage is gained by using a
linked list In computer science, a linked list is a linear collection of data elements whose order is not given by their physical placement in memory. Instead, each element points to the next. It is a data structure consisting of a collection of nodes which ...
, so using an
array An array is a systematic arrangement of similar objects, usually in rows and columns. Things called an array include: {{TOC right Music * In twelve-tone and serial composition, the presentation of simultaneous twelve-tone sets such that the ...
to store the list is acceptable, with worst-case performance O(nk), where n is the length of the data to be encoded and k is the number of values (generally a constant for a given implementation). The typical performance is better because frequently-used symbols are more likely to be at the front and will produce earlier hits. This is also the idea behind a Move-to-front self-organizing list. However, for decoding, we can use specialized data structures to greatly improve performance.


Python

This is a possible implementation of the move-to-front algorithm in Python. # mtfwiki.py from typing import List, Tuple, Union # Instead of always transmitting an "original" dictionary, it is simpler to just agree on an initial set. # Here we use the 256 possible values of a byte: common_dictionary = list(range(256)) def encode(plain_text: str) -> List nt # Change to bytes for 256. plain_text = plain_text.encode('utf-8') # Changing the common dictionary is a bad idea. Make a copy. dictionary = common_dictionary.copy() # Transformation compressed_text = list() # Regular array rank = 0 # Read in each character for c in plain_text: rank = dictionary.index(c) # Find the rank of the character in the dictionary (k) compressed_text.append(rank) # Update the encoded text # Update the dictionary (k) dictionary.pop(rank) dictionary.insert(0, c) return compressed_text # Return the encoded text The inverse will recover the original text: def decode(compressed_data: List nt -> str: compressed_text = compressed_data dictionary = common_dictionary.copy() plain_text = [] # Read in each rank in the encoded text for rank in compressed_text: # Read the character of that rank from the dictionary plain_text.append(dictionary[rank]) # Update the dictionary e = dictionary.pop(rank) dictionary.insert(0, e) return bytes(plain_text).decode('utf-8') # Return original string Example output: >>> import mtfwiki >>> mtfwiki.encode('Wikipedia') 7, 105, 107, 1, 112, 104, 104, 3, 102>>> mtfwiki.decode( 19, 106, 108, 1, 113, 105, 105, 3, 103 'wikipedia' In this example we can see the MTF code taking advantage of the three repetitive 's in the input word. The common dictionary here, however, is less than ideal since it is initialized with more commonly used
ASCII ASCII ( ), abbreviated from American Standard Code for Information Interchange, is a character encoding standard for electronic communication. ASCII codes represent text in computers, telecommunications equipment, and other devices. Because ...
printable characters put after little-used control codes, against the MTF code's design intent of keeping what's commonly used in the front. If one rotates the dictionary to put the more-used characters in earlier places, a better encoding can be obtained: >>> import mtfwiki >>> block32 = lambda x : + i for i in range(32)>>> # Sort the ASCII blocks: first lowercase, then uppercase, punctuation/number, and finally the control code and the non-ASCII stuff >>> mtfwiki.common_dictionary = block32(0x60) + block32(0x40) + block32(0x20) + block32(0x00) + list(range(128, 256)) >>> mtfwiki.encode('Wikipedia') 5, 10, 12, 1, 17, 9, 9, 3, 7


Use in practical data compression algorithms

The MTF transform takes advantage of local correlation of frequencies to reduce the
entropy Entropy is a scientific concept, as well as a measurable physical property, that is most commonly associated with a state of disorder, randomness, or uncertainty. The term and the concept are used in diverse fields, from classical thermodyna ...
of a message. Indeed, recently used letters stay towards the front of the list; if use of letters exhibits local correlations, this will result in a large number of small numbers such as "0"'s and "1"'s in the output. However, not all data exhibits this type of local correlation, and for some messages, the MTF transform may actually increase the entropy. An important use of the MTF transform is in
Burrows–Wheeler transform The Burrows–Wheeler transform (BWT, also called block-sorting compression) rearranges a character string into runs of similar characters. This is useful for compression, since it tends to be easy to compress a string that has runs of repeated c ...
based compression. The Burrows–Wheeler transform is very good at producing a sequence that exhibits local frequency correlation from
text Text may refer to: Written word * Text (literary theory), any object that can be read, including: **Religious text, a writing that a religious tradition considers to be sacred **Text, a verse or passage from scripture used in expository preachin ...
and certain other special classes of data. Compression benefits greatly from following up the Burrows–Wheeler transform with an MTF transform before the final entropy-encoding step.


Example

As an example, imagine we wish to compress Hamlet's soliloquy (''To be, or not to be...''). We can calculate the size of this message to be 7033 bits. Naively, we might try to apply the MTF transform directly. The result is a message with 7807 bits (higher than the original). The reason is that English text does not in general exhibit a high level of local frequency correlation. However, if we first apply the Burrows–Wheeler transform, and then the MTF transform, we get a message with 6187 bits. Note that the Burrows–Wheeler transform does not decrease the entropy of the message; it only reorders the bytes in a way that makes the MTF transform more effective. One problem with the basic MTF transform is that it makes the same changes for any character, regardless of frequency, which can result in diminished compression as characters that occur rarely may push frequent characters to higher values. Various alterations and alternatives have been developed for this reason. One common change is to make it so that characters above a certain point can only be moved to a certain threshold. Another is to make some algorithm that runs a count of each character's local frequency and uses these values to choose the characters' order at any point. Many of these transforms still reserve zero for repeat characters, since these are often the most common in data after the Burrows Wheeler Transform.


Move-to-front linked-list

* The term Move To Front (MTF) is also used in a slightly different context, as a type of a dynamic
linked list In computer science, a linked list is a linear collection of data elements whose order is not given by their physical placement in memory. Instead, each element points to the next. It is a data structure consisting of a collection of nodes which ...
. In an MTF list, each element is moved to the front when it is accessed. This ensures that, over time, the more frequently accessed elements are easier to access.


References


External links


"Move to front" by Arturo San Emeterio Campos
{{DEFAULTSORT:Move-To-Front Transform Data compression Lossless compression algorithms Transforms Articles with example Python (programming language) code