Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
230 views

Erlang pattern matching bitstrings

I'm writing code to decode messages from a binary protocol. Each message type is assigned a 1 byte type identifier and each message carries this type id. Messages all start with a common header ...
4
votes
3answers
157 views

Measuring efficiency of Huffman coding with Python bitstring

I have the following string that I would like to Huffman-encode and store efficiently into a bit array: >>> print sequence GTCAGGACAAGAAAGACAANTCCAATTNACATTATG| The frequencies of the ...
4
votes
4answers
2k views

Calculating Hamming weight efficiently in matlab

Given a MATLAB uint32 to be interpreted as a bit string, what is an efficient and concise way of counting how many nonzero bits are in the string? I have a working, naive approach which loops over ...
3
votes
1answer
224 views

Finding two consecutive 1's in a bitstring in less then n time?

I am trying to figure out a way to see if a bitstring has 2 consecutive ones in the bitstring size n in less then n time. For example, lets say we had a bitstring size 5 (index 0-4). If index 1 and ...
3
votes
3answers
872 views

Converting grouped hex characters into a bitstring in Perl

I have some 256-character strings of hexadecimal characters which represent a sequence of bit flags, and I'm trying to convert them back into a bitstring so I can manipulate them with &, |, vec ...
3
votes
6answers
1k views

Project Euler #219

I'm trying to do project Euler number 219 but am failing to get a grasp of it. I'm trying to use Python which according to project Euler should be able to do it within a minute! This leads me to think ...
2
votes
1answer
34 views

Can I store a dict with bitstring values in memory without padding?

I have a dict from some hash key to a bitstring. The bitstring can be variable length, but are generally < 160 bits and usually <80. I have about 80M key value pairs. How can I store this data ...
2
votes
2answers
335 views

Building binary tree from preorder bitstring

I am trying to do an assignment but I'm having trouble with the first step. The link below is the assignment for context: ...
1
vote
4answers
329 views

Unable to create a binary tree properly?

I am trying to build a binary tree from a string input piped to System.in with Java. Whenever a letter from a-z is encountered in the string I am making an internal node (with 2 children). Whenever a ...
1
vote
3answers
166 views

Better way to split a binary in chunks, preferably with bitstring comprehensions

I'm trying to replace the following function with something more elegant: split_packet(_, <<>>) -> []; split_packet(Size, P) when byte_size(P) < Size -> [ P ]; ...
1
vote
2answers
132 views

stepping in python-bitstring 2.2.0

Update: in python-bitstring 3.0.0 step has the conventional meaning I am using python bitstring, I have a ConstBitArray loaded from file and I would like to get a slice with a step different from 1. ...
1
vote
2answers
222 views

Huffman “terminator” bitstring

Motivation Imagine a huffman compressed file that gets downloaded partially, like in P2P software, so we allocate disk space for the whole file first and then start downloading random file chunks. ...
0
votes
2answers
204 views

Binary tree from preorder bitstring

I need to build a binary tree from a preorder bitstring (which is piped into standard input in a stream) and I was wondering if my understanding of this was correct. If I had a preorder bitstring of ...
0
votes
4answers
184 views

Data Encryption Standard

We were asked to write a Java implementation of the DES algorithm (which is used for encryption and decryption). I had a couple of questions: DES specifies that there should be 64 bits of plain text ...
0
votes
2answers
100 views

BitString error on Windows XP?

Scott, I'd like to thank you for your BitString program. I am working on interpreting data from a neutron detector, and I've found that this module is just the tool I need. Unfortunately, I have yet ...