美文网首页
剑指Offer面试题29 顺时针打印矩阵

剑指Offer面试题29 顺时针打印矩阵

作者: Yue_Q | 来源:发表于2019-01-07 19:19 被阅读0次

题目描述

输入一个矩阵,按照从外向里以顺时针的顺序依次打印出每一个数字,例如,如果输入如下4 X 4矩阵: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 则依次打印出数字1,2,3,4,8,12,16,15,14,13,9,5,6,7,11,10.

class Solution {
public:
    vector<int> printMatrix(vector<vector<int> > matrix) {
        int mRow = matrix.size();//行
        vector<int> mVector;
        if(mRow == 0) return mVector;
        int mCol = matrix[0].size();//列
        
        int tRow = 0;
        int tCol = -1;//注意从-1开始
        while(mRow>0 && mCol>0) {
            for(int i=0;i<mCol;i++) {
                 tCol++;
                mVector.push_back(matrix[tRow][tCol]);
            }
            mRow--;
            if(!(mRow>0 && mCol>0)) break;//以上从左到右
            
            for(int i=0;i<mRow;i++)
            {
                tRow++;
                mVector.push_back(matrix[tRow][tCol]);
            }
            mCol--;
             if(!(mRow>0 && mCol>0)) break;//从上到下
            
            for(int i=mCol-1;i>=0;i--) {
                tCol--;
                mVector.push_back(matrix[tRow][tCol]);
            }
            mRow--;
            if(!(mRow>0 && mCol>0)) break;//从右到左
            
            for(int i=mRow-1;i>=0;i--) {
                tRow--;
                mVector.push_back(matrix[tRow][tCol]);
            }
            mCol--;//从下到上
        }
        return mVector;
    }
};

相关文章

网友评论

      本文标题:剑指Offer面试题29 顺时针打印矩阵

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