我得到了一个包含 n 个整数的列表,这些整数在 1 到 n 的范围内。列表中没有重复项。但是列表中缺少一个整数。我必须找到丢失的整数。
Example: If n=8
I/P [7,2,6,5,3,1,8]
O/P 4
I am using a simple concept to find the missing number which is to get the
sum of numbers
total = n*(n+1)/2
And then Subtract all the numbers from sum.
但是如果数字之和超过最大允许整数,上述方法将失败。
所以我搜索了第二个解决方案,我找到了一个方法如下:
1) XOR all the elements present in arr[], let the result of XOR be R1.
2) XOR all numbers from 1 to n, let XOR be R2.
3) XOR of R1 and R2 gives the missing number.
这种方法是如何工作的?..在上述情况下,R1 和 R2 的 XOR 如何找到丢失的整数?