Valhalla Legends Archive

Programming => General Programming => Topic started by: topaz on October 19, 2006, 06:02 PM

Title: Multiple bitwise operations
Post by: topaz on October 19, 2006, 06:02 PM
Is there a way to use XOR, but operate on n values?
Title: Re: Multiple bitwise operations
Post by: MyndFyre on October 19, 2006, 06:11 PM

result := 0
for i = 0 to n
  result ^= values[i]

Pseudocode.
Title: Re: Multiple bitwise operations
Post by: Grok on October 27, 2006, 10:20 AM
Quote from: MyndFyre[vL] on October 19, 2006, 06:11 PM

result := 0
for i = 0 to n
  result ^= values[i]

Pseudocode.

That would operate on n+1 values.

Pseudojab.  =p