2015年5月15日
摘要: Implement pow(x, n). 1 class Solution { 2 public: 3 double power(double x, int n) 4 { 5 if (n == 0) 6 return 1; 7 ... 阅读全文
posted @ 2015-05-15 12:27 黄瓜小肥皂 阅读(145) 评论(0) 推荐(0) 编辑
摘要: Given a set of candidate numbers (C) and a target number (T), find all unique combinations in C where the candidate numbers sums to T.The same repeate... 阅读全文
posted @ 2015-05-15 11:50 黄瓜小肥皂 阅读(109) 评论(0) 推荐(0) 编辑