2013年6月10日
摘要: // 20ms 1 struct Node 2 { 3 int num; 4 int pos; 5 }; 6 bool cmp(const Node &a,const Node &b) 7 { 8 return a.num<b.num; 9 }10 class Solution {11 public:12 vector<int> twoSum(vector<int> &numbers, int target) {13 // Start typing your C/C++ solution below14 // DO NOT w... 阅读全文
posted @ 2013-06-10 15:42 宇睿 阅读(141) 评论(0) 推荐(0) 编辑