美文网首页
283 Move Zeros

283 Move Zeros

作者: fwei | 来源:发表于2016-10-21 00:25 被阅读0次
    思路:
    遍历数组,把非零的放到数组最前方,剩余部分置零。
    
    语法学习:
    1.++ 符号
    nums[pos++]=nums[i];
    执行顺序:nums[pos]=nums[i];
                    pos=pos+1;
    
    2. void moveZeroes(vector<int>& nums)
        此处形参是引用类型,它的名字会绑定到实参上,即进行调用moveZeroes(nc)函数时,
        函数内可以改变nc值。P189, P45;
    void fun(int* p); fun(&x);等价于 void fun(int& p); fun(x);
       C++中,建议使用引用类型的形参代替指针。
    

    相关文章

      网友评论

          本文标题:283 Move Zeros

          本文链接:https://www.haomeiwen.com/subject/hdzisttx.html