US20120319875A1 - Method for storing node information of huffman tree and corresponding decoding method - Google Patents

Method for storing node information of huffman tree and corresponding decoding method Download PDF

Info

Publication number
US20120319875A1
US20120319875A1 US13/596,131 US201213596131A US2012319875A1 US 20120319875 A1 US20120319875 A1 US 20120319875A1 US 201213596131 A US201213596131 A US 201213596131A US 2012319875 A1 US2012319875 A1 US 2012319875A1
Authority
US
United States
Prior art keywords
node
value
huffman tree
index
array
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Abandoned
Application number
US13/596,131
Inventor
Chung-I Lee
Chien-Fa Yeh
Chiu-Hua Lu
Cheng-Feng Tsai
Shan-Chuan JENG
Yu-Feng Chien
Tsung-Hsin Yen
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Hon Hai Precision Industry Co Ltd
Original Assignee
Hon Hai Precision Industry Co Ltd
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Hon Hai Precision Industry Co Ltd filed Critical Hon Hai Precision Industry Co Ltd
Priority to US13/596,131 priority Critical patent/US20120319875A1/en
Publication of US20120319875A1 publication Critical patent/US20120319875A1/en
Abandoned legal-status Critical Current

Links

Images

Classifications

    • HELECTRICITY
    • H03ELECTRONIC CIRCUITRY
    • H03MCODING; DECODING; CODE CONVERSION IN GENERAL
    • H03M7/00Conversion of a code where information is represented by a given sequence or number of digits to a code where the same, similar or subset of information is represented by a different sequence or number of digits
    • H03M7/30Compression; Expansion; Suppression of unnecessary data, e.g. redundancy reduction
    • H03M7/40Conversion to or from variable length codes, e.g. Shannon-Fano code, Huffman code, Morse code

Definitions

  • Embodiments of the present disclosure relates to data encoding technology, and particularly to a method for storing node information of a Huffman tree and corresponding decoding method.
  • node information of each node in a Huffman tree is stored using a Huffman table.
  • the node information of each node in the Huffman tree may include a return value, a code value, and a code length.
  • the return value of each node may be obtained from the Huffman table according to a specified code value of encoded data when Huffman decoding is performed on the encoded data.
  • the Huffman table occupies too much storage space because each node needs to store at least three kinds of values. Therefore, an efficient method for storing node information of the Huffman tree is desired.
  • FIG. 1 is a schematic diagram of some embodiments of a computer.
  • FIG. 2 is a flowchart of some embodiments of a method for storing node information of a Huffman tree.
  • FIG. 3 is an example of a Huffman table for storing node information.
  • FIG. 4 is an example of a Huffman tree created from the Huffman table of FIG. 3 .
  • FIG. 5 is an example of creating an index for each node in the Huffman tree of FIG. 4 .
  • FIG. 6 is an example of a data structure for storing node information of the Huffman tree.
  • FIG. 7 is a flowchart of some embodiments of a method for decoding data using an array of the Huffman tree.
  • non-transitory readable medium may be a hard disk drive, a compact disc, a digital video disc, or a tape drive.
  • FIG. 1 is a schematic diagram of some embodiments of a computer 2 .
  • the computer 2 may include a storage device 20 , a storing module 22 , a decoding module 23 , and a processor 24 .
  • the storage device 20 may be used to store data 21 (e.g., a bit stream) to be decoded.
  • the storing module 22 may be used to store node information of a Huffman tree in an array of the Huffman tree, and the decoding module 23 may be used to decode the data 21 using the array of the Huffman tree.
  • a detailed description will be given in the following paragraphs.
  • the computer 2 is electronically connected to a display device 1 and an input device 4 .
  • the display device 1 may be a liquid crystal display (LCD) or a cathode ray tube (CRT) display, for example.
  • the input device 4 is provided for selecting a bit stream to be decoded by the decoding module 23 .
  • the selected bit stream may be displayed on the display device 1 .
  • the input device 4 may be a keyboard, or a mouse.
  • the storing module 22 and the decoding module 23 comprise one or more computerized instructions that are stored in the storage device 20 .
  • the computerized code includes instructions that are executed by the at least one processor 24 to provide functions for modules 22 - 23 .
  • FIG. 2 is a flowchart of some embodiments of a method for storing node information of a Huffman tree.
  • the storing module 22 creates an index of each node in the Huffman tree using a breadth first search (BFS) algorithm.
  • BFS breadth first search
  • FIG. 4 a Huffman tree is created according to a Huffman table as shown in FIG. 3 .
  • FIG. 5 is a schematic diagram of the Huffman tree including a plurality of nodes having indexes. As shown in FIG. 5 , the index of each node in the Huffman tree is located on the top of the node, and recorded with a specific form, for example, a bold and italic form, such as 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, and 12.
  • the storing module 22 reads each node of the Huffman tree beginning from a root node (i.e., the first node) according to a sequence of the index of each node. For example, the storing module reads each node of the Huffman tree according to an ascending order of the index of each node.
  • the storing module 22 stores node information of each node into an array of the Huffman tree.
  • the storing module 22 stores the node information of each node with a first part and a second part into the array of the Huffman tree.
  • the storing module 22 divides the node information of each node in the Huffman tree into a first part “Value 2 ” and a second part “LeafBit” (refer to part A of FIG. 6 ), and merges a binary number of a first value of the first part and a binary number of a second value of the second part of each node to acquire a merged binary number.
  • the storing module 22 stores a decimal number of the merged binary number into the array of the Huffman tree.
  • the first value and the second value are decimal numbers.
  • the first value of the first part and the second value of the second part of the node are determined by the following steps.
  • the storing module 22 first determines if the node is an internal node or a leaf node of the Huffman tree. If the node is the internal node, the first value of the first part of the node is equal to a difference value between an index of a left child node of the node and an index of the node, and a second value of the second part of the node is “1.” If the node is the leaf node, the first value of the first part of the node is equal to the return value of the node, and the second value of the second part of the node is “0.” In some embodiments, a storage length of the first part of each node is 7 bits, and the storage length of the second part of each node is 1 bit.
  • the return value of each node is in the range of [ ⁇ 3, 3].
  • the maximum difference between the index of the left child node of the node and the index of the node is three.
  • the storage length of the first part and the second part of each node is allocated to be 8 bits (i.e., 1 byte).
  • the node whose index equals to 10 is the leaf node (hereinafter refer to as “node ten”)
  • the second value of the second part of node ten is “0.”
  • FIG. 7 is a flowchart of some embodiments of a method for decoding data using the array of the Huffman tree.
  • the decoding module 23 obtains a bit stream to be decoded from the storage device 20 .
  • the decoding module 23 reads a root node (i.e., the first node) of the Huffman tree to decode the bit stream.
  • the decoding module 23 determines if the node is a leaf node. The procedure goes to block S 23 if the node is not the leaf node, or the procedure goes to block S 24 if the node is a leaf node. Specifically, the decoding module 23 determines that the node is the internal node if the second value of second part of the node is “1,” or determines that the node is the leaf node if the second value of second part of the node is “0.”
  • the decoding module 23 reads a bit from the bit stream sequentially to determine a next node in the Huffman tree, and the procedure returns to block S 22 to determine if the next node is a leaf node.
  • the next node in the Huffman tree is determined by the following formulas. If the bit read from the bit stream is “0,” the index of the next node is equal to (the index of a current node+the first value of the first part of the current node). If the bit read from the bit stream is “1,” the index of the next node is equal to (the index of the current node+the first value of the first part of the current node+1).
  • the decoding module 23 searches a decimal number of the node from the array of the Huffman tree according to an index of the node, and obtains the return value of the node from the decimal number of the node.
  • the return value of the node is equal to the first value of the first part of the node.
  • the first value of the first part of the node is determined by the following steps.
  • the decoding module 23 converts the decimal number of the node to the binary number, and performs a right arithmetic shift operation on the binary number by 1 bit to obtain a right-shifted binary number.
  • the decoding module 23 converts the right-shifted binary number to the decimal number to obtain the first value of the first part of the node.
  • the decoding module 23 determines if reading of the bit stream has been finished. The procedure returns to block S 21 if reading of the bit stream has not been finished. Otherwise, the procedure goes to block S 26 if reading of the bit stream has been finished.
  • the decoding module 23 outputs the return value of each node to generate a decoded bit stream.
  • step 1 the decoding module 23 reads a node of the Huffman tree began from the root node.
  • the index of the root node is “0.”
  • step 2 the decoding module 23 determines if the node is the leaf node. Because a last bit of the binary number of Huffman_Array[0] is “1,” thus, the node is not the leaf node.
  • step 4 the decoding module 23 determines if the node whose index equals to 1 is the leaf node. Because the last bit of the binary number of Huffman_Array[1] is “1,” the node is not the leaf node.
  • step 7 the decoding module 23 repeats the steps 1-6 to decode the remain bits of the bit stream (i.e., 01 01000110110111 , the underlined bits) until reading of the bit stream has been finished.
  • the decoding module 23 may obtain the decoded bit stream of ⁇ 1, 1, ⁇ 1, 1, ⁇ 2, 0 ⁇ .

Landscapes

  • Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Compression Or Coding Systems Of Tv Signals (AREA)
  • Compression, Expansion, Code Conversion, And Decoders (AREA)
  • Compression Of Band Width Or Redundancy In Fax (AREA)

Abstract

A method for storing node information of a Huffman tree. The method creates an index of each node in the Huffman tree using a breadth first search (BFS) algorithm. The method further reads each node of the Huffman tree beginning from a root node according to a sequence of the index of each node, and stores node information of each node into an array of the Huffman tree.

Description

    CROSS-REFERENCE TO RELATED APPLICATIONS
  • The present application is a divisional application of U.S. Ser. No. 12/881,134, filed on Sep. 13, 2010, the entire disclosure of which is incorporated herein by reference.
  • BACKGROUND
  • 1. Technical Field
  • Embodiments of the present disclosure relates to data encoding technology, and particularly to a method for storing node information of a Huffman tree and corresponding decoding method.
  • 2. Description of Related Art
  • Currently, node information of each node in a Huffman tree is stored using a Huffman table. The node information of each node in the Huffman tree may include a return value, a code value, and a code length. The return value of each node may be obtained from the Huffman table according to a specified code value of encoded data when Huffman decoding is performed on the encoded data. However, the Huffman table occupies too much storage space because each node needs to store at least three kinds of values. Therefore, an efficient method for storing node information of the Huffman tree is desired.
  • BRIEF DESCRIPTION OF THE DRAWINGS
  • FIG. 1 is a schematic diagram of some embodiments of a computer.
  • FIG. 2 is a flowchart of some embodiments of a method for storing node information of a Huffman tree.
  • FIG. 3 is an example of a Huffman table for storing node information.
  • FIG. 4 is an example of a Huffman tree created from the Huffman table of FIG. 3.
  • FIG. 5 is an example of creating an index for each node in the Huffman tree of FIG. 4.
  • FIG. 6 is an example of a data structure for storing node information of the Huffman tree.
  • FIG. 7 is a flowchart of some embodiments of a method for decoding data using an array of the Huffman tree.
  • DETAILED DESCRIPTION
  • All of the processes described below may be embodied in, and fully automated by, functional code modules executed by one or more general purpose computers or processors. The code modules may be stored in any type of non-transitory readable medium or other storage device. Some or all of the methods may alternatively be embodied in specialized hardware. Depending on the embodiment, the non-transitory readable medium may be a hard disk drive, a compact disc, a digital video disc, or a tape drive.
  • FIG. 1 is a schematic diagram of some embodiments of a computer 2. In some embodiments, the computer 2 may include a storage device 20, a storing module 22, a decoding module 23, and a processor 24. The storage device 20 may be used to store data 21 (e.g., a bit stream) to be decoded. The storing module 22 may be used to store node information of a Huffman tree in an array of the Huffman tree, and the decoding module 23 may be used to decode the data 21 using the array of the Huffman tree. A detailed description will be given in the following paragraphs.
  • In some embodiments, the computer 2 is electronically connected to a display device 1 and an input device 4. Depending on the embodiment, the display device 1 may be a liquid crystal display (LCD) or a cathode ray tube (CRT) display, for example.
  • The input device 4 is provided for selecting a bit stream to be decoded by the decoding module 23. The selected bit stream may be displayed on the display device 1. In some embodiments, the input device 4 may be a keyboard, or a mouse.
  • In some embodiments, the storing module 22 and the decoding module 23 comprise one or more computerized instructions that are stored in the storage device 20. The computerized code includes instructions that are executed by the at least one processor 24 to provide functions for modules 22-23.
  • FIG. 2 is a flowchart of some embodiments of a method for storing node information of a Huffman tree.
  • In block S10, the storing module 22 creates an index of each node in the Huffman tree using a breadth first search (BFS) algorithm. For example, as shown in FIG. 4, a Huffman tree is created according to a Huffman table as shown in FIG. 3. FIG. 5 is a schematic diagram of the Huffman tree including a plurality of nodes having indexes. As shown in FIG. 5, the index of each node in the Huffman tree is located on the top of the node, and recorded with a specific form, for example, a bold and italic form, such as 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, and 12.
  • In block S12, the storing module 22 reads each node of the Huffman tree beginning from a root node (i.e., the first node) according to a sequence of the index of each node. For example, the storing module reads each node of the Huffman tree according to an ascending order of the index of each node.
  • In block S14, the storing module 22 stores node information of each node into an array of the Huffman tree. In some embodiments, the storing module 22 stores the node information of each node with a first part and a second part into the array of the Huffman tree. Specifically, the storing module 22 divides the node information of each node in the Huffman tree into a first part “Value2” and a second part “LeafBit” (refer to part A of FIG. 6), and merges a binary number of a first value of the first part and a binary number of a second value of the second part of each node to acquire a merged binary number. The storing module 22 stores a decimal number of the merged binary number into the array of the Huffman tree. In some embodiments, the first value and the second value are decimal numbers.
  • In some embodiments, the first value of the first part and the second value of the second part of the node are determined by the following steps. The storing module 22 first determines if the node is an internal node or a leaf node of the Huffman tree. If the node is the internal node, the first value of the first part of the node is equal to a difference value between an index of a left child node of the node and an index of the node, and a second value of the second part of the node is “1.” If the node is the leaf node, the first value of the first part of the node is equal to the return value of the node, and the second value of the second part of the node is “0.” In some embodiments, a storage length of the first part of each node is 7 bits, and the storage length of the second part of each node is 1 bit.
  • For example, the array of the Huffman tree of FIG. 5 may be represented as follows: char Huffman_Array [13]={3, 5, 7, −2, 2, 5, 0, 4, 3, 5, −4, −6, 6}. As shown in FIG. 5, the return value of each node is in the range of [−3, 3]. The maximum difference between the index of the left child node of the node and the index of the node is three. Thus, the storage length of the first part and the second part of each node is equal to 3 bits (Value2)+1 bit (LeafBit)=4 bits. In some embodiments, the storage length of the first part and the second part of each node is allocated to be 8 bits (i.e., 1 byte).
  • As shown in part B of FIG. 6, the node whose index equals to 5 is the internal node (hereinafter refer to as “node five”), the first value of the first part of node five=7−5=2=(0000010)2, and the second value of the second part of node five is “1.” Thus, the fifth element of the array of the Huffman tree is Huffman_Array[5]=5=(00000101)2.
  • As shown in part C of FIG. 6, the node whose index equals to 10 is the leaf node (hereinafter refer to as “node ten”), the first value of the first part of node ten=−2=(1111110)2, and the second value of the second part of node ten is “0.” Thus, the tenth element of the array of the Huffman tree is Huffman_Array[10]=−4=(11111100)2.
  • FIG. 7 is a flowchart of some embodiments of a method for decoding data using the array of the Huffman tree.
  • In block S20, the decoding module 23 obtains a bit stream to be decoded from the storage device 20.
  • In block S21, the decoding module 23 reads a root node (i.e., the first node) of the Huffman tree to decode the bit stream.
  • In block S22, the decoding module 23 determines if the node is a leaf node. The procedure goes to block S23 if the node is not the leaf node, or the procedure goes to block S24 if the node is a leaf node. Specifically, the decoding module 23 determines that the node is the internal node if the second value of second part of the node is “1,” or determines that the node is the leaf node if the second value of second part of the node is “0.”
  • In block S23, the decoding module 23 reads a bit from the bit stream sequentially to determine a next node in the Huffman tree, and the procedure returns to block S22 to determine if the next node is a leaf node. In some embodiments, the next node in the Huffman tree is determined by the following formulas. If the bit read from the bit stream is “0,” the index of the next node is equal to (the index of a current node+the first value of the first part of the current node). If the bit read from the bit stream is “1,” the index of the next node is equal to (the index of the current node+the first value of the first part of the current node+1).
  • In block S24, the decoding module 23 searches a decimal number of the node from the array of the Huffman tree according to an index of the node, and obtains the return value of the node from the decimal number of the node. In some embodiments, the return value of the node is equal to the first value of the first part of the node. Specifically, the first value of the first part of the node is determined by the following steps. The decoding module 23 converts the decimal number of the node to the binary number, and performs a right arithmetic shift operation on the binary number by 1 bit to obtain a right-shifted binary number. The decoding module 23 converts the right-shifted binary number to the decimal number to obtain the first value of the first part of the node.
  • In block S25, the decoding module 23 determines if reading of the bit stream has been finished. The procedure returns to block S21 if reading of the bit stream has not been finished. Otherwise, the procedure goes to block S26 if reading of the bit stream has been finished.
  • In block S26, the decoding module 23 outputs the return value of each node to generate a decoded bit stream.
  • An example of decoding a bit stream of “0101000110110111” using the array of the Huffman tree of FIG. 5 is provided as follows. The array of the Huffman tree of FIG. 5 may be “char Huffman_Array [13]={3, 5, 7, −2, 2, 5, 0, 4, 3, 5, −4, −6, 6}.”
  • In step 1, the decoding module 23 reads a node of the Huffman tree began from the root node. The index of the root node is “0.”
  • In step 2, the decoding module 23 determines if the node is the leaf node. Because a last bit of the binary number of Huffman_Array[0] is “1,” thus, the node is not the leaf node.
  • In step 3, the decoding module 23 reads a bit from the bit stream of “0101000110110111” sequentially. Because the first bit is “0,” the index of the next node=(0+(Huffman Array[0]>>1))=(0+1)=1. “Huffman_Array [i]>>1” represents the first value of the first part of the node whose index is “i.”
  • In step 4, the decoding module 23 determines if the node whose index equals to 1 is the leaf node. Because the last bit of the binary number of Huffman_Array[1] is “1,” the node is not the leaf node.
  • In step 5, the decoding module 23 reads a subsequent bit from the bit stream of “0101000110110111” sequentially. Because the subsequent bit is “1,” the index of the next node=(1+(Huffman_Array[1]>>1)+1)=(1+2+1)=4. Thus, the next node is the fourth element of Huffman Array[4].
  • In step 6, the decoding module 23 determines if the node whose index equals to 4 is the leaf node. Because the last bit of the binary number of Huffman_Array[4] is “0,” that is, the node is the leaf node. Thus, the decoding module 23 obtains the return value of the node whose index equals to 4, and the return value=Huffman_Array[4]>>1=1.
  • In step 7, the decoding module 23 repeats the steps 1-6 to decode the remain bits of the bit stream (i.e., 0101000110110111, the underlined bits) until reading of the bit stream has been finished. Thus, the decoding module 23 may obtain the decoded bit stream of {1, 1, −1, 1, −2, 0}.
  • It should be emphasized that the above-described embodiments of the present disclosure, particularly, any embodiments, are merely possible examples of implementations, merely set forth for a clear understanding of the principles of the disclosure. Many variations and modifications may be made to the above-described embodiment(s) of the disclosure without departing substantially from the spirit and principles of the disclosure. All such modifications and variations are intended to be included herein within the scope of this disclosure and the present disclosure and protected by the following claims.

Claims (9)

1. A method for decoding data using an array of a Huffman tree, node information of each node in the Huffman tree being stored in the array of the Huffman tree, each node comprising a return value, the method comprising:
(a) obtaining a bit stream to be decoded;
(b) reading a root node of the Huffman tree;
(c) determining whether the node is a leaf node;
(d) reading a bit from the bit stream sequentially to determine a next node in the Huffman tree when the node is not the leaf node, and returning to step (c) to determine whether the next node is a leaf node;
(e) searching a decimal number of the node from the array of the Huffman tree according to an index of the node when the node is a leaf node, and obtaining the return value of the node from the decimal number of the node;
(f) determining whether reading of the bit stream has been finished;
(g) returning to step (b) when reading of the bit stream has not been finished; or
(h) outputting the return value of each node to generate a decoded bit stream when reading of the bit stream has been finished.
2. The method according to claim 1, wherein the node information of each node is stored with a first part and a second part into the array of the Huffman tree.
3. The method according to claim 2, wherein the node information of each node are stored into the array of the Huffman tree by:
dividing the node information of each node in the Huffman tree into a first part and a second part;
merging a binary number of a first value of the first part and a binary number of a second value of the second part of each node to acquire a merged binary number, the first value and the second value being decimal numbers;
storing a decimal number of the merged binary number into the array of the Huffman tree.
4. The method according to claim 3, wherein a storage length of the first part of each node is 7 bits, and the storage length of the second part of each node is 1 bit.
5. The method according to claim 3, wherein the first value of the first part and the second value of the second part of the node are determined by:
determining whether the node is an internal node or a leaf node of the Huffman tree;
determining that a first value of the first part of the node is equal to a difference value between an index of a left child node of the node and an index of the node when the node is the internal node, and a second value of the second part of the node is “1;” or
determining that the first value of the first part of the node is equal to the return value of the node when the node is the leaf node, and the second value of the second part of the node is “0.”
6. The method according to claim 5, wherein the step of determining whether the node is a leaf node comprises:
determining that the node is the internal node when the second value of second part of the node is “1”; and
determining that the node is the leaf node when the second value of second part of the node is “0”.
7. The method according to claim 5, wherein the next node in the Huffman tree in step (d) is determined by the following formulas:
the index of the next node=(the index of a current node+the first value of the first part of the current node), upon the condition that the bit read from the bit stream is “0”; and
the index of the next node=(the index of the current node+the first value of the first part of the current node+1), upon the condition that the bit read from the bit stream is “1”.
8. The method according to claim 7, wherein the return value of the node is equal to the first value of the first part of the node.
9. The method according to claim 8, wherein the first value of the first part of the node is determined by the following steps:
converting the decimal number of the node to the binary number, and performing a right arithmetic shift operation on the binary number by 1 bit to obtain a right-shifted binary number; and
converting the right-shifted binary number to the decimal number to obtain the first value of the first part of the node.
US13/596,131 2010-05-19 2012-08-28 Method for storing node information of huffman tree and corresponding decoding method Abandoned US20120319875A1 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
US13/596,131 US20120319875A1 (en) 2010-05-19 2012-08-28 Method for storing node information of huffman tree and corresponding decoding method

Applications Claiming Priority (4)

Application Number Priority Date Filing Date Title
TW99115878A TW201143306A (en) 2010-05-19 2010-05-19 Method for storing information of nodes in a huffman tree and method for decoding data using an array of the huffman tree
TW099115878 2010-05-19
US12/881,134 US8279095B2 (en) 2010-05-19 2010-09-13 Method for storing node information of Huffman tree and corresponding decoding method
US13/596,131 US20120319875A1 (en) 2010-05-19 2012-08-28 Method for storing node information of huffman tree and corresponding decoding method

Related Parent Applications (1)

Application Number Title Priority Date Filing Date
US12/881,134 Division US8279095B2 (en) 2010-05-19 2010-09-13 Method for storing node information of Huffman tree and corresponding decoding method

Publications (1)

Publication Number Publication Date
US20120319875A1 true US20120319875A1 (en) 2012-12-20

Family

ID=44972073

Family Applications (2)

Application Number Title Priority Date Filing Date
US12/881,134 Expired - Fee Related US8279095B2 (en) 2010-05-19 2010-09-13 Method for storing node information of Huffman tree and corresponding decoding method
US13/596,131 Abandoned US20120319875A1 (en) 2010-05-19 2012-08-28 Method for storing node information of huffman tree and corresponding decoding method

Family Applications Before (1)

Application Number Title Priority Date Filing Date
US12/881,134 Expired - Fee Related US8279095B2 (en) 2010-05-19 2010-09-13 Method for storing node information of Huffman tree and corresponding decoding method

Country Status (3)

Country Link
US (2) US8279095B2 (en)
JP (1) JP2011244447A (en)
TW (1) TW201143306A (en)

Cited By (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US8593308B1 (en) * 2012-05-31 2013-11-26 International Business Machines Corporation Method of accelerating dynamic Huffman decompaction within the inflate algorithm
CN107682018A (en) * 2017-09-28 2018-02-09 西安万像电子科技有限公司 Coding/decoding method and device
CN107797541A (en) * 2016-08-29 2018-03-13 河北百亚信息科技有限公司 The light decompression algorithm of image file based on ZigBee firmware upgrades in smart home environment

Families Citing this family (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US9698819B1 (en) * 2016-12-23 2017-07-04 Amazon Technologies, Inc. Huffman code generation

Citations (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20030174076A1 (en) * 2002-02-28 2003-09-18 Samsung Electronics Co., Ltd. Huffman decoding method and apparatus

Family Cites Families (12)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JPH03131176A (en) * 1989-10-16 1991-06-04 Victor Co Of Japan Ltd Decoding system for tree structure variable length code
JPH04100324A (en) * 1990-08-18 1992-04-02 Ricoh Co Ltd Decoding system for variable length code
JPH07170197A (en) * 1993-12-13 1995-07-04 Ricoh Co Ltd Automatic generating method for decoding table for variable length code
JP3273119B2 (en) * 1995-09-29 2002-04-08 京セラ株式会社 Data compression / decompression device
US6012061A (en) * 1997-11-25 2000-01-04 International Business Machines Corp. Method and apparatus for deleting nodes in Patricia trees
JPH11249987A (en) * 1998-03-05 1999-09-17 Nec Corp Message processor, its method and storage medium storing message processing control program
US6535150B1 (en) * 1999-09-03 2003-03-18 Whamtech, Inc. Method and apparatus for implementing run-length compression
CN1342343A (en) * 1999-10-29 2002-03-27 皇家菲利浦电子有限公司 Variable-length decoding
JP4501288B2 (en) * 2001-02-23 2010-07-14 ヤマハ株式会社 Huffman code decoding method, decoding apparatus, Huffman code decoding table, and method for creating the same
US7249311B2 (en) * 2002-09-11 2007-07-24 Koninklijke Philips Electronics N.V. Method end device for source decoding a variable-length soft-input codewords sequence
US7609182B2 (en) * 2007-11-30 2009-10-27 Comtech Aha Corporation Generating dynamic huffman codes
US7990297B1 (en) * 2010-02-26 2011-08-02 Research In Motion Limited Encoding and decoding methods and devices employing dual codesets

Patent Citations (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20030174076A1 (en) * 2002-02-28 2003-09-18 Samsung Electronics Co., Ltd. Huffman decoding method and apparatus

Cited By (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US8593308B1 (en) * 2012-05-31 2013-11-26 International Business Machines Corporation Method of accelerating dynamic Huffman decompaction within the inflate algorithm
CN107797541A (en) * 2016-08-29 2018-03-13 河北百亚信息科技有限公司 The light decompression algorithm of image file based on ZigBee firmware upgrades in smart home environment
CN107682018A (en) * 2017-09-28 2018-02-09 西安万像电子科技有限公司 Coding/decoding method and device

Also Published As

Publication number Publication date
JP2011244447A (en) 2011-12-01
US20110285558A1 (en) 2011-11-24
US8279095B2 (en) 2012-10-02
TW201143306A (en) 2011-12-01

Similar Documents

Publication Publication Date Title
US9235651B2 (en) Data retrieval apparatus, data storage method and data retrieval method
Bille et al. Random access to grammar-compressed strings and trees
US8838551B2 (en) Multi-level database compression
US9069808B2 (en) Indexing provenance data and evaluating provenance data queries in data processing systems
US9098537B2 (en) Techniques for aligned run-length encoding
JP5895545B2 (en) Program, compressed file generation method, compression code expansion method, information processing apparatus, and recording medium
US9378126B2 (en) Decompression apparatus and decompression method
JPH06243009A (en) Method for compressing all text indexes
US20150317335A1 (en) Generating a schema of a not-only-structured-query-language database
US10127254B2 (en) Method of index recommendation for NoSQL database
CN110019865B (en) Mass image processing method and device, electronic equipment and storage medium
US9094041B2 (en) Encoding method, information processing apparatus, and recording medium
US20120319875A1 (en) Method for storing node information of huffman tree and corresponding decoding method
US8947272B2 (en) Decoding encoded data
KR100484137B1 (en) Improved huffman decoding method and apparatus thereof
Holley et al. Dynamic alignment-free and reference-free read compression
US8493249B2 (en) Compression match enumeration
US7898444B2 (en) Decoding method
CN102255617B (en) Storage method of Huffman tree and method of decoding data by using arrays
US20090307214A1 (en) Computer system for performing aggregation of tree-structured data, and method and computer program product therefor
CN111190896B (en) Data processing method, device, storage medium and computer equipment
KR100742738B1 (en) Encoding device and method, decoding device and method, program, and recording medium
US8463759B2 (en) Method and system for compressing data
JP2011257877A (en) Device and method for information retrieval, and program
US20060004791A1 (en) Use of pseudo keys in node ID range based storage architecture

Legal Events

Date Code Title Description
STCB Information on status: application discontinuation

Free format text: ABANDONED -- FAILURE TO RESPOND TO AN OFFICE ACTION