Tagged Questions

24
votes
5answers
813 views

Interesting problem: Write a program that takes text as input and produces a program that reproduces that text

Recently I came across one nice problem, which turned up as simple to understand as hard to find any way to solve. The problem is: Write a program, that reads a text from input and prints some ...
5
votes
4answers
653 views

How to read data from a zip file without having to unzip the entire file

Is there anyway in .Net (C#) to extract data from a zip file without decompressing the complete file? Simply I possibly want to extract data (file) from the start of a zip file, obviously this ...
5
votes
5answers
444 views

compressed vector/array class with random data access

I would like to make "compressed array"/"compressed vector" class (details below), that allows random data access with more or less constant time. "more or less constant time" means that although ...
3
votes
4answers
2k views

Compression algorithms for numbers only

I am to compress location data (latitude,longitude, date,time). All the numbers are in fixed format. 2 of them (latitude,longitude) are with decimal format. Other 2 are integers. Now these numbers ...
2
votes
4answers
37 views

“uncompressable” data sequence

I would like to generate an "uncompressable" data sequence of X MBytes through an algorithm. I want it that way in order to create a program that measures the network speed through VPN connection ...
2
votes
2answers
138 views

Are there any current C/C++ libraries filled with well-known compression algorithms?

I am looking for a C or C++ library that includes several well-known compression algorithms (particularly lossless ones), for the purpose of developing a custom compression scheme and comparing it to ...
2
votes
3answers
193 views

Any theoretical limit to compression?

Imagine that you had all the supercomputers in the world at your disposal for the next 10 years. Your task was to compress 10 full-length movies losslessly as much as possible. Another criteria was ...
0
votes
1answer
32 views

What is the best/quickest method to upload a very large folder to my Server?

I have a large directory which I need to upload to a new host's server, but because I have never transferred such a large directory (32GB), I am wondering whether there is something I'm missing. Now, ...
0
votes
4answers
109 views

Making a list of integers more human friendly

This is a bit of a side project I have taken on to solve a no-fix issue for work. Our system outputs a code to represent a combination of things on another thing. Some example codes are: ...
0
votes
3answers
83 views

Compressing measurements data files

from measurements I get text files that basically contain a table of float numbers, with the dimensions 1000x1000. Those take up about 15MB of space which, considering that I get about 1000 result ...
0
votes
2answers
50 views

Is Result of Lossless compression is really the original data?

I would like to know ,Is result of Lossless compression on data produces bit for bit perfect match with original data ,if so then what use of having such compression.Is it really useful to use ...
0
votes
1answer
25 views

Question about the compressibility of certain groups of numbers

Lets say we have a bunch of numbers that increment in small values from a large offset eg offset = 123456789 our numbers are: 123456790 123456791 123456793 123456796 123456799 123456804 if we ...
0
votes
7answers
239 views

Is Terra Compression possible? If so, please explain and provide samples

Long Ascii String Text may or may not be crushed and compressed into hash kind of ascii "checksum" by using sophisticated mathematical formula/algo. Just like air which can be compressed. To compress ...
0
votes
6answers
484 views

Binary Array Compression in C

I have binary array in c, I want to compress the array, kindly suggest me algorithm which compress binary array. I have used Lempel–Ziv–Welch (LZW) algorithm but its not suitable for me because there ...
0
votes
6answers
263 views

Data Compression

i have a task to compress a stock market data somehow...the data is in a file where the stock value for each day is given in one line and so on...so it's a really big file. Eg, 123.45 234.75 ...
-1
votes
2answers
103 views

Medical data real-time data compression algorithm

I am looking for a robust, efficient data compression algorithm that I could use to provide a real-time transmission of medical data (primarily waveforms - heart rate, etc.). I would appreciate any ...