Overview/Questions How do computers store text information? Why do - - PDF document

overview questions
SMART_READER_LITE
LIVE PREVIEW

Overview/Questions How do computers store text information? Why do - - PDF document

CS101 Lecture 13: Text Representation and Data Compression John Magee 15 July 2013 1 Overview/Questions How do computers store text information? Why do some characters show up as s on my browser? What is compression, and why


slide-1
SLIDE 1

1

1

John Magee

15 July 2013

CS101 Lecture 13: Text Representation and Data Compression

2

Overview/Questions

– How do computers store text information? – Why do some characters show up as s on my browser? – What is compression, and why is it important? – How can data be compressed?

slide-2
SLIDE 2

2

3

Binary Representations

Recall: a single bit can be either a 0 or a 1 What if you need to represent more than 2 choices? n bits can represent 2n possible combinations

4

Representing Text

There are finite number of characters to represent, so list them all and assign each a binary pattern. Character set A list of characters and the binary codes used to represent each one. Computer manufacturers agreed to standardize in the early 1960s.

slide-3
SLIDE 3

3

5

The ASCII Character Set

ASCII stands for American Standard Code for Information Interchange ASCII originally used seven bits to represent each character, allowing for 128 unique characters Later extended ASCII evolved so that all eight bits were used.

6

The ASCII Character Set (7 bits)

slide-4
SLIDE 4

4

7

The Extended ASCII Character Set

8

Can't You Take a Joke? :-)

Carnegie Mellon professor Scott E. Fahlman Proposed ASCII emoticons, Sept. 19, 1982. Source: http://www.wired.com/science/discoveries/news/2008/09/dayintech_0919

slide-5
SLIDE 5

5

9

ASCII Art

Text-based systems had no graphics… …so people created art and graphics out of ASCII text!

10

The Unicode Character Set

Extended ASCII is not enough for international use. Unicode uses 16 bits per character How many characters can UNICODE represent? Unicode is a superset of ASCII. The first 256 characters correspond exactly to the extended ASCII character set

slide-6
SLIDE 6

6

11

The Unicode Character Set

12

Recall: Morse Code

Invented by Samuel Morse for the telegraph in 1840s

slide-7
SLIDE 7

7

13

Text Compression

Problem: Assigning 16 bits to each character in a document uses a heck of a lot of space. We need ways to store and transmit text

  • efficiently. Why?

Common compression techniques:

keyword encoding run-length encoding Huffman encoding

14

Keyword Encoding

Replace frequently used words with a single character

slide-8
SLIDE 8

8

15

Keyword Encoding Example

Given the following paragraph,

We hold these truths to be self-evident, that all men are created equal, that they are endowed by their Creator with certain unalienable Rights, that among these are Life, Liberty and the pursuit of Happiness. That to secure these rights, Governments are instituted among Men, deriving their just powers from the consent of the governed, That whenever any Form of Government becomes destructive of these ends, it is the Right of the People to alter or to abolish it, and to institute new Government, laying its foundation on such principles and

  • rganizing its powers in such form, as to them shall seem most

likely to effect their Safety and Happiness.

16

Keyword Encoding Example

The encoded paragraph is

We hold # truths to be self-evident, $ all men are created equal, $ ~y are endowed by ~ir Creator with certain unalienable Rights, $ among # are Life, Liberty + ~ pursuit of Happiness. — $ to secure # rights, Governments are instituted among Men, deriving ~ir just powers from ~ consent of ~ governed, — $ whenever any Form of Government becomes destructive of # ends, it is ~ Right of ~ People to alter or to abolish it, + to institute new Government, laying its foundation on such principles + organizing its powers in such form, ^ to ~m shall seem most likely to effect ~ir Safety + Happiness.

slide-9
SLIDE 9

9

17

Keyword Encoding

Compression ratio The size of the compressed data divided by the size

  • f the original data (0 < c.r. <= 1)

What did we save? Original paragraph: 656 characters Encoded paragraph: 596 characters Characters saved: 60 characters Compression ratio: 596/656 = 0.9085 Could we use this substitution chart for all text?

18

Run-Length Encoding

Consider a single character which is repeated over and over again in a long sequence. Replace a repeated sequence with

– a flag character – repeated character – number of repetitions

Example: *n8

– * is the flag character – n is the repeated character – 8 is the number of times n is repeated

slide-10
SLIDE 10

10

19

Run-Length Encoding Example

Original text bbbbbbbbjjjkllqqqqqq+++++ Encoded text *b8jjjkll*q6*+5 (Why isn't l encoded? J?) The compression ratio is 15/25 or .6 Encoded text *x4*p4l*k7 Original text xxxxpppplkkkkkkk

This type of repetition isn’t very helpful for English text; can you think of a situation where it might be helpful?

20

Huffman Encoding

Why should the character “X" and "z" take up the same number of bits as "e" or " "? Huffman codes use variable-length bit strings to represent each character. More frequently used letters have shorter strings to represent them.

slide-11
SLIDE 11

11

21

Huffman Encoding Example

ballboard would be

1010001001001010110001111011

compression ratio is 28/72 or 0.39 as compared to ASCII Try to encode roadbed

22

Huffman Encoding

Prefix Property No character's bit string is the prefix of any

  • ther character's bit string.

To decode

look for match left to right, bit by bit record letter when a match is found begin next character where you left off

slide-12
SLIDE 12

12

23

Huffman Encoding Example

Decode

1011111001010

Try it!

24

Huffman Encoding

The technique for creating codes guarantees the prefix property of the codes. There is no single “Huffman code” -- each depends

  • n the application. Two types of Huffman codes:

– general, based on use of letters in English, Spanish, …. – specialized, based on text itself or specific types of text

slide-13
SLIDE 13

13

25

Take-Away Points

– Character Sets, ASCII, Unicode – Data Compression – Key encoding – Run-length encoding – Huffman encoding

26

Student To Dos

–Readings:

  • Reed ch 5, pp 83-95

– HW03 (HTML) due Monday 11:59pm. – HW04 (Alice) due Thursday 11:59pm. – HW05 (Networking) to be posted.

Practice, Practice, Practice!