Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
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":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (5)
As of 2024-04-16 12:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found