剑指-顺时针打印矩阵

注意:在每次进行循环进行读写时,一定要判断left、right、top、bom的关系

    vector<int> printMatrix(vector<vector<int> > matrix) {
        vector<int> vecResult;
        if (matrix.size() == 0)return vecResult;
        int rowCount = matrix.size();
        int colCount = matrix[0].size();
        int left = 0, right = colCount - 1;
        int top = 0, bom = rowCount - 1;
        while (left <= right && top <= bom)
        {
            for (int i = left; i <= right; i++)
            {
                vecResult.push_back(matrix[top][i]);
            }
            if(top<bom)
                for (int i = top + 1; i <= bom; i++)
                {
                    vecResult.push_back(matrix[i][right]);
                }
            if(top<bom&&left<right)
                for (int i = right - 1; i >= left; i--)
                {
                    vecResult.push_back(matrix[bom][i]);
                }
            if(top+1<bom&&left<right)
                for (int i = bom - 1; i >= top+1; i--)
                {
                    vecResult.push_back(matrix[i][left]);
                }
            left++; right--; top++; bom--;
        }
        return vecResult;
    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值