I would like to compress an an array of integers, initially initialized to 0, using a yet-to-be-determined integer compression/decompression method.
Is it possible with some integer compression method to increment (+1) a specific element of an array of compressed integers accurately using C or C++?
You can certainly implement this, if your increment method:
If you want to increment in less of a dumb way you’ll need intimate knowledge of the compression process, and so would we to give you more assistance.