1 / 14

LZW Dekodierung

LZW Dekodierung. Algorithmus (etwas anders als beim Kodieren):. 1 INIT(Wörterbuch) 2 last := lese_ersten_Code()

treva
Download Presentation

LZW Dekodierung

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. LZW Dekodierung Algorithmus (etwas anders als beim Kodieren): 1 INIT(Wörterbuch) 2 last := lese_ersten_Code() 3 Ausgabe(Muster OF last)4 WHILE Codes_verfügbar() DO:5 next := lese_nächsten_Code()6 IF next IN Wörterbuch THEN:7 ADD(last, erstes_Zeichen_von(Muster OF next)) TO Wörterbuch 8 ELSE:9 ADD(last, erstes_Zeichen_von(Muster OF last)) TO Wörterbuch10 FI 11 Ausgabe(Muster OF next) 12 last := next13 OD siehe z.B. Wikipedia

  2. LZW Dekodierung Wörterbuch 0000 a 0001 b 0010 c 0011 d 0100 e 0101 f Zeichen 0101 0000 0001 0101 0001 0111 1001 0101 1101 0100 0011 Last: Next:

  3. LZW Dekodierung Wörterbuch 0000 a 0001 b 0010 c 0011 d 0100 e 0101 f Zeichen 0101 0000 0001 0101 0001 0111 f 1001 0101 1101 0100 0011 Last: f Next:

  4. LZW Dekodierung Wörterbuch 0000 a 0001 b 0010 c 0011 d 0100 e 0101 f 0110 fa Zeichen 0101 0000 0001 0101 0001 0111 f a 1001 0101 1101 0100 0011 Last: f Next: a

  5. LZW Dekodierung Wörterbuch 0000 a 0001 b 0010 c 0011 d 0100 e 0101 f 0110 fa 0111 ab Zeichen 0101 0000 0001 0101 0001 0111 f a b 1001 0101 1101 0100 0011 Last: a Next: b

  6. LZW Dekodierung Wörterbuch 0000 a 0001 b 0010 c 0011 d 0100 e 0101 f 0110 fa 0111 ab 1000 bf Zeichen 0101 0000 0001 0101 0001 0111 f a b f 1001 0101 1101 0100 0011 Last: b Next: f

  7. LZW Dekodierung Wörterbuch 0000 a 0001 b 0010 c 0011 d 0100 e 0101 f 0110 fa 0111 ab 1000 bf 1001 fb Zeichen 0101 0000 0001 0101 0001 0111 f a b f b 1001 0101 1101 0100 0011 Last: f Next: b

  8. LZW Dekodierung Wörterbuch 0000 a 0001 b 0010 c 0011 d 0100 e 0101 f 0110 fa 0111 ab 1000 bf 1001 fb 1010 ba Zeichen 0101 0000 0001 0101 0001 0111 f a b f b ab 1001 0101 1101 0100 0011 Last: b Next: ab

  9. LZW Dekodierung Wörterbuch 0000 a 0001 b 0010 c 0011 d 0100 e 0101 f 0110 fa 0111 ab 1000 bf 1001 fb 1010 ba 1011 abf Zeichen 0101 0000 0001 0101 0001 0111 f a b f b ab 1001 0101 1101 0100 0011 fb Last: ab Next: fb

  10. LZW Dekodierung Wörterbuch 0000 a 0001 b 0010 c 0011 d 0100 e 0101 f 0110 fa 0111 ab 1000 bf 1001 fb 1010 ba 1011 abf1100 fbf Zeichen 0101 0000 0001 0101 0001 0111 f a b f b ab 1001 0101 1101 0100 0011 fb f Last: fb Next: f

  11. LZW Dekodierung Wörterbuch 0000 a 0001 b 0010 c 0011 d 0100 e 0101 f 0110 fa 0111 ab 1000 bf 1001 fb 1010 ba 1011 abf1100 fbf1101 ff Zeichen 0101 0000 0001 0101 0001 0111 f a b f b ab 1001 0101 1101 0100 0011 fb f Last: f Next: <1101>

  12. LZW Dekodierung Wörterbuch 0000 a 0001 b 0010 c 0011 d 0100 e 0101 f 0110 fa 0111 ab 1000 bf 1001 fb 1010 ba 1011 abf1100 fbf1101 ff Zeichen 0101 0000 0001 0101 0001 0111 f a b f b ab 1001 0101 1101 0100 0011 fb f ff Last: f Next: ff

  13. LZW Dekodierung Wörterbuch 0000 a 0001 b 0010 c 0011 d 0100 e 0101 f 0110 fa 0111 ab 1000 bf 1001 fb 1010 ba 1011 abf1100 fbf1101 ff 1110 ffe Zeichen 0101 0000 0001 0101 0001 0111 f a b f b ab 1001 0101 1101 0100 0011 fb f ff e Last: ff Next: e

  14. LZW Dekodierung Wörterbuch 0000 a 0001 b 0010 c 0011 d 0100 e 0101 f 0110 fa 0111 ab 1000 bf 1001 fb 1010 ba 1011 abf1100 fbf1101 ff 1110 ffe1111 ed Zeichen 0101 0000 0001 0101 0001 0111 f a b f b ab 1001 0101 1101 0100 0011 fb f ff e d Last: e Next: d

More Related