Monday, September 22, 2014

Pow(x,y)

Problem

Implement pow(x, n).

Idea

递归,每次计算n/2次方.注意:
  • n可能为负数
  • n可能为奇数或者偶数

  • Solution


    No comments:

    Post a Comment