Skip to content
Advertisement

String compression and decompression for data set that can be nested

My input is a compressed string of the format number[string] and the decompressed output form should be the string written number times. For example:

JavaScript

My brute force approach in Java:

JavaScript

Can I get some better approach with less cost?

Advertisement

Answer

We actually want to find the strings in [] and repeat it n times which is specified before the []. But the problem is these strings are nested. So when we call the function that reads the string in[] it should call itself again when it hits a new []. Hence this leads to a recursive solution and we loop through the input string only once.

JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement