python implementation of a new integer encoding algorithm.

janhein.vanderburg at gmail.com janhein.vanderburg at gmail.com
Thu Apr 9 05:11:34 EDT 2015


Op donderdag 19 februari 2015 19:05:12 UTC+1 schreef Ian:
> That stop-bit variant looks extremely inefficient (and wrong) to me.
You are right; I was wrong.

> encoding with just a small amount of binary at the end. This is what I
> would expect a 2-bit stop-bit encoding to look like:
> 
> 0: 00
> 1: 01
> 2: 11, 00
> 3: 11, 01
> 4: 11, 10, 00
> 5: 11, 10, 01
> 6: 11, 11, 00
> 7: 11, 11, 01
> 8: 11, 10, 10, 00
> 9: 11, 10, 10, 01
> 10: 11, 10, 11, 00

This is indeed what the current algorithms will produce.
In http://optarbvalintenc.blogspot.nl/2015/04/the-new-proposal.html I propose to improve that as follows:

0: 00
1: 01
2: 10, 00
3: 10, 01
4: 11, 00
5: 11, 01
6: 10, 10, 00
etc.




More information about the Python-list mailing list