顺时针打印矩阵

Posted RenewDo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了顺时针打印矩阵相关的知识,希望对你有一定的参考价值。

 

class Solution {
public:
    vector<int> printMatrix(vector<vector<int> > matrix) {
         int start=0;
        int heigh=matrix.size(),wide=matrix[0].size();
        vector<int> res;
        while(heigh>start*2 && wide>start*2)
            {
            int end_wide=wide-1-start;
            int end_heigh=heigh-1-start;
            for(int i=start;i<=end_wide;i++)
                res.push_back(matrix[start][i]);
            
            if(start<=end_wide){
            for(int i=start+1;i<=end_heigh;i++)
                res.push_back(matrix[i][end_wide]);}
            
            if(start<=end_wide && start<end_heigh){
            for(int i=end_wide-1;i>=start;i--)
                res.push_back(matrix[end_heigh][i]);}
            
            if(start<end_wide&&start<end_heigh-1){
            for(int i=end_heigh-1;i>start;i--)
                res.push_back(matrix[i][start]);}
            
            start++;
        }
        return res;
    }
};

 

以上是关于顺时针打印矩阵的主要内容,如果未能解决你的问题,请参考以下文章

顺时针打印矩阵

剑指offer--29顺时针打印矩阵

剑指offer 19.顺时针打印矩阵

顺时针打印矩阵

剑指offer:顺时针打印矩阵

剑指 Offer 29. 顺时针打印矩阵 的 详细题解