Fellow monks,

I have a string of 0s and 1s of some length (lets say "1010101011"), and a list of indices (lets say 2, 5, 8). I should return TRUE if the bits at these indices are the negation of the bits before them. In our example:

Bit 2 is NOT bit 1, so OK. (indices range 0 to string length - 1).
Bit 5 is NOT bit 4, so OK.
Bit 8 is NOT bit 7, so OK.
All 3 OK, so I return TRUE. Had one of these been false, I'd return FALSE.

Pretty simple, but I must make it as fast as possible. The basic approach would be just a loop on these indices and checking with substr() for each of them whether it's the NOT of the previous. Or a split and then array operations (I've yet to time them against each other).

Is there a quicker way ? Remember: the input is a string "..." and a list of indices into this string. For simplicity sake assume correctness of all arguments.


In reply to fast bit twiddling by spurperl

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.