def total_money(n): money = 0 for i in range(n): money = (money + 100) * 1.05 return money
递归
二分法
递推
冒泡排序