代码拉取完成,页面将自动刷新
//
// Created by 高森森 on 2022/10/12.
//
#ifndef LEETCODE_SOLUTION_22_H
#define LEETCODE_SOLUTION_22_H
#include<bits/stdc++.h>
using namespace std;
const int direction[2][2]={{-1,1},{1,-1}};
class solution_22 {
public:
vector<int>result;
vector<int> findDiagonalOrder(vector<vector<int>>& mat) {
int x,y,nx,ny;
int flag=0;
x=0;
y=0;
int row=mat.size();
int col=mat[0].size();
while(result.size()!=mat.size()*mat[0].size()){
result.push_back(mat[x][y]);
nx=x+direction[flag][0];
ny=y+direction[flag][1];
if(nx>=row||nx<0||ny>=col||ny<0){
if(flag==0){
//如果flag=0是向右移动,但是同时注意若移动到最右边即y+1>=m,应该向下移动
nx=y+1<mat[0].size()?x:x+1;
ny=y+1<mat[0].size()?y+1:y;
}else{
//如果flag=1是向下移动,但是同时注意若移动到最下边即x+1>=m,应该向右移动
nx=x+1<mat.size()?x+1:x;
ny=x+1<mat.size()?y:y+1;
}
flag=(flag+1)%2;
}
x=nx;
y=ny;
}
return result;
}
};
#endif //LEETCODE_SOLUTION_22_H
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。