muthusrinivasan
Joined: 07 Dec 2005 Posts: 1
|
Posted: Sat Apr 21, 2007 3:03 am Post subject: Re: RLE . . |
|
|
RLE is the Real Length Encoding
it converts the chars like aaaaaaaaa to aa7 ,i.e the total no of a's is 9 can be encoded as aa7 .
if the string is somethng like this aaaaaaaaaaaa ( 12 a's ) , thn it can be encoded as aa9a
another ex : i/p is aa , then the op is aa0 . |
|