How about This
Will this work for a compression algorithm:
String of ASCI characters
convert these char's into their binary formatt 1's & 0's(consist of 8 bits)
Group the binary into groups of 4 bytes(32bits),
Convert each group into int values,
Would thsi give a good compression ratio, how do i go about creating the algorithm for this?
thanks,
kelvin
if you change to chars into ASCI values and then you convert them to binary you'll have 16 1's and 0's.
if you combine the 16 1's and 0's together and then calculate the unicode of this you'll end up with one char?
?
i think
maybe/ maybe not?
thanks,
kelvin
> if you change to chars into ASCI values and then you
> convert them to binary you'll have 16 1's and 0's.
>
> if you combine the 16 1's and 0's together and then
> calculate the unicode of this you'll end up with one
> char?
One 32 bit char?