数据结构入门14天-03
1. 两数之和
哈希表先放一放~ 双循环思路里,i++这块就不已经太懂了,拿Leecode当代码测试发现i++和++i在for循环里效果一致
class Solution{
public://必加
vector <int> twoSum (vector <int> & nums, int target){
int n = nums.size();
for(int i=0; i < n; i++){ //i++和++i好像输出都是0,1,2,3诶,所以要保持的是i < n,但是第一题好像是n-1,不懂?
cout<<i<<endl;
//for(int j=i+1; j<n; j++){
//if( nums[i] + nums[j] == target){
//return {i,j}; //不需要别的符号
//}
//}
}
return {};
}
}; //;