思路:
暴力法多次移动肯定是不行的,会超时。提出新的方法,通过快慢指针来实现
代码:
class Solution {
public:
void moveZeroes(vector& nums) {
int fastIndex=0,slowIndex=0;
bool flag=true;
while(fastIndex
欢迎分享,转载请注明来源:内存溢出
思路:
暴力法多次移动肯定是不行的,会超时。提出新的方法,通过快慢指针来实现
代码:
class Solution {
public:
void moveZeroes(vector& nums) {
int fastIndex=0,slowIndex=0;
bool flag=true;
while(fastIndex
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)