How would I go about implementing this algorithm? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T10:46:54Z http://stackoverflow.com/feeds/question/496026 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/496026/how-would-i-go-about-implementing-this-algorithm 8 How would I go about implementing this algorithm? John 2009-01-30T16:04:06Z 2009-01-30T16:35:36Z <p>Friday afternoon seems like a good time to ask this question...</p> <p>A while back I was trying to brute force a remote control which sent a 12 bit binary 'key'.</p> <p>The device I made worked, but was very slow as it was trying every combination at about 50 bits per second (4096 codes = 49152 bits = ~16 minutes)</p> <p>I opened the receiver and found it was using a shift register to check the codes and no delay was required between attempts. This meant that the receiver was simply looking at the last 12 bits to be received to see if they were a match to the key.</p> <p>This meant that if the stream 111111111111000000000000 was sent through, it had effectively tried all of these codes.</p> <pre><code>111111111111 111111111110 111111111100 111111111000 111111110000 111111100000 111111000000 111110000000 111100000000 111000000000 110000000000 100000000000 000000000000 </code></pre> <p>In this case, I have used 24 bits to try 13 12 bit combinations (>90% compression).</p> <p>Does anyone know of an algorithm that could reduce my 49152 bits sent by taking advantage of this?</p> <p>I'm not working on the gadget anymore, but it's always been in the back of my head that there must be some algorithm to reduce the bits sent.</p> http://stackoverflow.com/questions/496026/how-would-i-go-about-implementing-this-algorithm/496061#496061 0 Answer by Chochos for How would I go about implementing this algorithm? Chochos 2009-01-30T16:13:41Z 2009-01-30T16:13:41Z <p>Off the top of my head, I suppose flipping one bit in each 12-bit sequence would take care of another 13 combinations, for example 111111111101000000000010, then 111111111011000000000100, etc. But you still have to do a lot permutations, even with one bit I think you still have to do 111111111101000000000100 etc. Then flip two bits on one side and 1 on the other, etc.</p> http://stackoverflow.com/questions/496026/how-would-i-go-about-implementing-this-algorithm/496154#496154 12 Answer by Pesto for How would I go about implementing this algorithm? Pesto 2009-01-30T16:30:49Z 2009-01-30T16:30:49Z <p>What you're talking about is a <a href="http://en.wikipedia.org/wiki/De_Bruijn_sequence" rel="nofollow">de Bruijn sequence</a>. If you don't care about how it works, you just want the result, <a href="http://www.hakank.org/comb/debruijn.cgi?k=2&amp;n=12&amp;submit=Ok" rel="nofollow">here it is</a>.</p> http://stackoverflow.com/questions/496026/how-would-i-go-about-implementing-this-algorithm/496176#496176 1 Answer by shoosh for How would I go about implementing this algorithm? shoosh 2009-01-30T16:35:36Z 2009-01-30T16:35:36Z <p>This is a well studied problem.<br /> See here:<br /> <a href="http://garden.irmacs.sfu.ca/?q=op/smallest_universal_supersequence" rel="nofollow">http://garden.irmacs.sfu.ca/?q=op/smallest_universal_supersequence</a><br /> The first comment contains a link for a paper which solves it.</p>