Skip to content
This repository has been archived by the owner on May 23, 2021. It is now read-only.

Latest commit

 

History

History
10 lines (6 loc) · 230 Bytes

README.md

File metadata and controls

10 lines (6 loc) · 230 Bytes

BasicStringCompression

Algorithm to compress a string using simple string compression.

"aaabbbbc" turns into "a3b4c1".

Algorithm will keep original string if compressed string is longer.

Runs in O(n) time.

Uses O(n) memory.