【Leecode笔记03-数据结构入门14天】初学自用笔记

数据结构入门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 {};
       }
};          //;
上一篇:【解题报告】Leecode 423. 从英文中重建数字——Leecode每日一题系列


下一篇:在.bashrc中,使用python获取本机IP地址(现在只支持wlan)