题解 | #对角线遍历矩阵#

对角线遍历矩阵

https://www.nowcoder.com/practice/04b591e3537046c68bf398c18b84cb27

#include <cstddef>
#include <vector>
class Solution {
  public:
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     *
     * @param mat int整型vector<vector<>>
     * @return int整型vector
     */
    vector<int> diagonalOrder(vector<vector<int> >& mat) {
        // write code here
        int count = -1;
        vector<int> ans;
        ans.push_back(mat[0][0]);
        int num = 1;
        //方向数组
        vector<pair<int, int>> dp{{0, 1}, {1, -1}, {1, 0}, {-1, 1}};
        int i = 0, j = 0;
        int m = mat.size();//行数
        int n = mat[0].size();//列数
        //总共要遍历的次数
        while (num < m * n) {
            count = (count + 1) % 4;
            if (count == 0) {
                //右移
                int x ;
                int y ;
                if(j==n-1){//到达最右边特殊处理
                    y=j;
                    x=i +1;
                }else{
                    x = i + dp[count].first;
                    y = j + dp[count].second;
                }
                
                if (x < m && y < n && x >= 0 && y >= 0 ) {
                    ans.push_back(mat[x][y]);
                    i = x;
                    j = y;
                    num++;
                }

            } else if (count == 2) {
                //下移
                int x ;
                int y ;
                if(i==m-1){//到达最下边特殊处理
                    x=i;
                    y=j + 1;
                }else{
                    x = i + dp[count].first;
                    y = j + dp[count].second;
                }
                if (x < m && y < n && x >= 0 && y >= 0 ) {
                    ans.push_back(mat[x][y]);
                    i = x;
                    j = y;
                    num++;
                }
            } else if (count == 3) {
                //斜上方移动
                int x = i + dp[count].first;
                int y = j + dp[count].second;
                while (x < m && y < n && x >= 0 && y >= 0) {
                    ans.push_back(mat[x][y]);
                    i = x;
                    j = y;
                    x = i + dp[count].first;
                    y = j + dp[count].second;
                    num++;
                }
            } else if (count == 1) {
                //斜下方移动
                int x = i + dp[count].first;
                int y = j + dp[count].second;
                while (x < m && y < n && x >= 0 && y >= 0) {
                    ans.push_back(mat[x][y]);
                    i = x;
                    j = y;
                    x = i + dp[count].first;
                    y = j + dp[count].second;
                    num++;
                }
            }
            
        }

        return ans;
    }
};
全部评论

相关推荐

不愿透露姓名的神秘牛友
11-27 10:46
点赞 评论 收藏
分享
伟大的烤冷面被普调:暨大✌🏻就是强
点赞 评论 收藏
分享
Yushuu:你的确很厉害,但是有一个小问题:谁问你了?我的意思是,谁在意?我告诉你,根本没人问你,在我们之中0人问了你,我把所有问你的人都请来 party 了,到场人数是0个人,誰问你了?WHO ASKED?谁问汝矣?誰があなたに聞きましたか?누가 물어봤어?我爬上了珠穆朗玛峰也没找到谁问你了,我刚刚潜入了世界上最大的射电望远镜也没开到那个问你的人的盒,在找到谁问你之前我连癌症的解药都发明了出来,我开了最大距离渲染也没找到谁问你了我活在这个被辐射蹂躏了多年的破碎世界的坟墓里目睹全球核战争把人类文明毁灭也没见到谁问你了😆
点赞 评论 收藏
分享
评论
1
收藏
分享
牛客网
牛客企业服务