Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Run length encoding is a simple form of data compression. It replaces long sequences of a repeated value with one occurrence of the value and

image text in transcribed

Run length encoding is a simple form of data compression. It replaces long sequences of a repeated value with one occurrence of the value and a count of how many times to repeat it. This works reasonably well when there are lots of long repeats such as in black and white images. To avoid having to represent non-repeated runs with a count of 1 and the value, a special value is often used to indicate a run and everything else is just treated as a simple value. For this exercise you will decompress one line of input at at time assuming the line was compressed according to the following The newline characters are passed through uncompressed even when there are repeated blank lines, when a run of n>=3 repeated characters, c' is detected where c is NOT a digit, the run will be replaced with #nc. When a run of n>=3 repeated characters, c, is detected where c IS a digit, the run will be replaced with #n#c. The extra # is needed to avoid confusing the repeated digit C with the last digit of the run count. All other characters (i.e. runs of just 1 or 2 characters) are passed through unmodified. Assume the uncompressed input does not contain the symbol "#. This assumption can be eliminated. You might think about how you would do it. Some examples abc decompresses to abc #3ab#4c decompresses to aaabcccc abc12#14#3 decompresses to abc1 233333333333333 Your decoder can assume the input was properly compressed, i.e. no need for error checking. Your program must include a public statio method decompress0 that takes one parameter, a String, that is the line to be decompressed. The method returns the decompressed String

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Advances In Databases And Information Systems 14th East European Conference Adbis 2010 Novi Sad Serbia September 2010 Proceedings Lncs 6295

Authors: Barbara Catania ,Mirjana Ivanovic ,Bernhard Thalheim

2010th Edition

3642155758, 978-3642155758

More Books

Students also viewed these Databases questions