[leetcode]498. Diagonal Traverse

162 篇文章 0 订阅

[leetcode]498. Diagonal Traverse


Analysis

完了完了 真的要找不到工作了!!!!!苍了天了!!!—— [每天刷题并不难0.0]

Given a matrix of M x N elements (M rows, N columns), return all elements of the matrix in diagonal order as shown in the below image.
在这里插入图片描述
注意一下方向的变化以及顺序就行了

Implement

class Solution {
public:
    vector<int> findDiagonalOrder(vector<vector<int>>& matrix) {
        vector<int> res;
        int m = matrix.size();
        if(m == 0)
            return res;
        int n = matrix[0].size();
        int r = 0;
        int c = 0;
        int d = 0;
        int dir[2][2] = {{-1, 1}, {1, -1}};
        int cnt = 0;
        while(cnt < m*n){
            res.push_back(matrix[r][c]);
            r += dir[d][0];
            c += dir[d][1];
            if(r >= m){
                r = m-1;
                c += 2;
                d = 1-d;
            }
            if(c >= n){
                c = n-1;
                r += 2;
                d = 1-d;
            }
            if(r < 0){
                r = 0;
                d = 1-d;
            }
            if(c < 0){
                c = 0;
                d = 1-d;
            }
            cnt++;
        }
        return res;
        
    }
    
};
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值