fork(17) download
  1. N = 6 # length of numbers to generate
  2. K = 4 # number of bits to be set
  3.  
  4. cur = (1<<K)-1 #smallest number witk K bits set
  5.  
  6. while cur < (1<<N):
  7.  
  8. print format(cur,'b')
  9.  
  10. #when you subtract 1, you turn off the lowest 1 bit
  11. #and set lower bits to 1, so we can get the samallest 1 bit like this:
  12. lowbit = cur&~(cur-1)
  13.  
  14. #when you add lowbit, you turn it off, along with all the adjacent 1s
  15. #This is one more than the number we have to move into lower positions
  16. ones = cur&~(cur+lowbit)
  17.  
  18. #cur+lowbit also turns on the first bit after those ones, which
  19. #is the one we want to turn on, so the only thing left after that
  20. #is turning on the ones at the lowest positions
  21. cur = cur+lowbit+(ones/lowbit/2)
  22.  
  23.  
Success #stdin #stdout 0.01s 23352KB
stdin
Standard input is empty
stdout
1111
10111
11011
11101
11110
100111
101011
101101
101110
110011
110101
110110
111001
111010
111100