[algogeeks] Re: Find the next number for a given number without using any arithmetic operators(use bit operations)

2010-06-25 Thread vikas kumar
adder with add value 1

On Jun 24, 8:30 pm, jaladhi dave jaladhi.k.d...@gmail.com wrote:
 Another approach :http://codepad.org/CqKIZJeO

 On Thu, Jun 24, 2010 at 7:31 PM, mohit ranjan shoonya.mo...@gmail.comwrote:

  @Dave

  Can u plz explain the logic behind this..

  Mohit

  On Thu, Jun 24, 2010 at 12:44 AM, Dave dave_and_da...@juno.com wrote:

  c = 1
  repeat
     d = n and c
     n = n xor c
     c = d left shifted by 1
  until c = 0

  Dave

  On Jun 23, 11:05 am, vijay auvija...@gmail.com wrote:
    Find the next number for a given number without using any arithmetic
   operators(use bit operations)

  --
  You received this message because you are subscribed to the Google Groups
  Algorithm Geeks group.
  To post to this group, send email to algoge...@googlegroups.com.
  To unsubscribe from this group, send email to
  algogeeks+unsubscr...@googlegroups.comalgogeeks%2bunsubscr...@googlegroups.com
  .
  For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.

   --
  You received this message because you are subscribed to the Google Groups
  Algorithm Geeks group.
  To post to this group, send email to algoge...@googlegroups.com.
  To unsubscribe from this group, send email to
  algogeeks+unsubscr...@googlegroups.comalgogeeks%2bunsubscr...@googlegroups.com
  .
  For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algoge...@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



[algogeeks] Re: Find the next number for a given number without using any arithmetic operators(use bit operations)

2010-06-25 Thread vikas kumar
adder with add value 1

On Jun 24, 8:30 pm, jaladhi dave jaladhi.k.d...@gmail.com wrote:
 Another approach :http://codepad.org/CqKIZJeO

 On Thu, Jun 24, 2010 at 7:31 PM, mohit ranjan shoonya.mo...@gmail.comwrote:

  @Dave

  Can u plz explain the logic behind this..

  Mohit

  On Thu, Jun 24, 2010 at 12:44 AM, Dave dave_and_da...@juno.com wrote:

  c = 1
  repeat
     d = n and c
     n = n xor c
     c = d left shifted by 1
  until c = 0

  Dave

  On Jun 23, 11:05 am, vijay auvija...@gmail.com wrote:
    Find the next number for a given number without using any arithmetic
   operators(use bit operations)

  --
  You received this message because you are subscribed to the Google Groups
  Algorithm Geeks group.
  To post to this group, send email to algoge...@googlegroups.com.
  To unsubscribe from this group, send email to
  algogeeks+unsubscr...@googlegroups.comalgogeeks%2bunsubscr...@googlegroups.com
  .
  For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.

   --
  You received this message because you are subscribed to the Google Groups
  Algorithm Geeks group.
  To post to this group, send email to algoge...@googlegroups.com.
  To unsubscribe from this group, send email to
  algogeeks+unsubscr...@googlegroups.comalgogeeks%2bunsubscr...@googlegroups.com
  .
  For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algoge...@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] Re: Find the next number for a given number without using any arithmetic operators(use bit operations)

2010-06-24 Thread mohit ranjan
@Dave

Can u plz explain the logic behind this..

Mohit


On Thu, Jun 24, 2010 at 12:44 AM, Dave dave_and_da...@juno.com wrote:

 c = 1
 repeat
d = n and c
n = n xor c
c = d left shifted by 1
 until c = 0

 Dave

 On Jun 23, 11:05 am, vijay auvija...@gmail.com wrote:
   Find the next number for a given number without using any arithmetic
  operators(use bit operations)

 --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algoge...@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.comalgogeeks%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.



-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algoge...@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.