maw32

maw32 t1_j1ylkbk wrote

In sorting algorithms there is a classification in online and offline. Offline algorithms need all of the data to work. Online algorithms can work with parts of the data and incorporate more data as it is received. I guess he is looking for an algorithm which can compress data arriving from a stream without buffering the whole stream first.

Or he want to compress data over the internet because he has no local admin rights to install a compression software/library.

2