听attack学长讲完课,整理一波 基本运算 按位或 \(1|1 = 1,1 | 0 = 1,0|0 = 0\) 按位与 \(1\&1=1 ,1 \& 0 = 0,0 \& 0 = 0\) 异或 \(1 \bigoplus 1 = 0,1\bigoplus 0 = 1,0 \bigoplus 0 = 0\) 异或性质 1.\(a \bigoplus a = 0\) 2.\(a \bigoplus 0 = a\) 3.\(a \bigoplus b = b \bigoplus a\) 4.\(a \bigoplus b \bigoplus c ...