The struct.pack() function allows converting integers of up to 64 bit to byte strings. What's the most efficient way to pack an even larger integer? I'd rather not add a dependency on non-standard modules like PyCrypto (which provides num_to_bytes()).
|
1
|
|||||||||
|
|
|
Assuming the poster wants to pack a large integer as a binary string, i.e. not use one byte of storage per digit in the number. One way of doing this seems to be:
This prints:
I can't say that I understand how to interpret these bits, right now ... |
||||
|
|
|
Do you mean something like this:
Which returns:
I'm just not sure what to do about negatives... I'm not that familiar with bit twidling. EDIT: Another solution (which runs about 30% faster by my tests):
|
||||||
|
|
|
As suggested by S.Lott in a comment, just convert the number to a string and pack that string. For example,
|
||||
|
|
|
This is a bit hacky, but you could go via the hex string representation, and there to binary with the hex codec:
It breaks a little because the hex codec requires an even number of digits, so you'll need to pad for that, and you'll need to set a flag to handle negative numbers. Here's a generic pack / unpack:
With all the fiddling for padding etc required, I'm not sure it's much better than a hand-rolled solution though. |
||
|
|
|
|
I take it you mean you only want to use as many bytes as you need to represent the number? e.g. if the number is:
On the Psion PDA they'd usually have some of packing scheme in which you read the first byte, detect if it has the highest bit set and then read another byte if it has. That way you'd just keep reading bytes until you read the "full" number. That system works quite well if most of the numbers you are dealing with are fairly small, as you'll normally only use one or two bytes per number. The alternative is to have one (or more) bytes representing the number of total bytes used, but at that point it's basically a string in Python anyway. i.e. it's a string of base-256 digits. |
||
|
|
