import sys
n = int(input())
data = map(int, raw_input().split())
m = set(data)
dict = {}
for i in m:
dict[i] = data.count(i)
if dict[i]%2 == 1:
print i
break
另外一种极其简单的办法,使用异或运算
eg. 1^1 = 0 ; 2 ^ 2 = 0; 3 ^ 2 ^ 2 = 3; 3 ^ 3 ^ 2 ^ 2 = 0;
异或满足结合律,所以偶数个会为0,奇数个为它本身。
import sys
n = int(input())
data = map(int, raw_input().split())
odd = 0
for i in data:
odd = odd ^ i
print odd
import sys
data = map(int, raw_input().split())
count = 0
for i in range(n-1):
if data[i+1] < data[i]:
count += 1
if count > 1:
print 0
else:
print 1
3.设计一个计算器。
实现 + - × 运算。
eg. 1+1; 345; ((3-4)*2)*5这样的。
没做完,其实是自己数据结构学的很不好,几乎没有基础,有时间好好学习一下。