码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode: Spiral Matrix [058]

时间:2014-05-24 23:11:02      阅读:279      评论:0      收藏:0      [点我收藏+]

标签:leetcode   算法   面试   

【题目】


Given a matrix of m x n elements (m rows, n columns), return all elements of the matrix in spiral order.

For example,
Given the following matrix:

[
 [ 1, 2, 3 ],
 [ 4, 5, 6 ],
 [ 7, 8, 9 ]
]

You should return [1,2,3,6,9,8,7,4,5].



【题意】

螺旋输出MxN矩阵 【注意是MxN】


【思路】

Rotate Image思路相同,从外向外逐层输出即可
注意处理两种特殊情况:外圈基本上都是由四边组成的举行,而矩阵中心的矩形很可能只是单行或者单列
    1. 单行
    2. 单列


【代码】

class Solution {
public:
    void output(vector<int>&result, vector<vector<int> >&matrix, int i, int j, int rows, int cols){
		
        if(rows<1 || cols<1)return;
        if(rows == 1){
			for(int y=j; y<j+cols; y++){
				result.push_back(matrix[i][y]);
			}
            return;
        }
		if(cols==1){
			for(int x=i; x<i+rows; x++){
				result.push_back(matrix[x][j]);
			}
			return;
		}
		
        //输出上边行
        int x=i, y=j;
        while(y<j+cols){
            result.push_back(matrix[x][y]);
            y++;
        }
        //输出右边行
        x=i+1; y=j+cols-1;
        while(x<i+rows){
            result.push_back(matrix[x][y]);
            x++;
        }
        //输出下边行
        x=i+rows-1; y=j+cols-2;
        while(y>=j){
            result.push_back(matrix[x][y]);
            y--;
        }
        //输出左边行
        x=i+rows-2; y=j;
        while(x>i){
            result.push_back(matrix[x][y]);
            x--;
        }
        
        //输出内圈
        output(result, matrix, i+1, j+1, rows-2, cols-2);
    }
    vector<int> spiralOrder(vector<vector<int> > &matrix) {
        vector<int>result;
		int rows=matrix.size();
		if(rows==0)return result;
		int cols=matrix[0].size();
        output(result,matrix, 0, 0,rows, cols);
        return result;
    }
};


LeetCode: Spiral Matrix [058],布布扣,bubuko.com

LeetCode: Spiral Matrix [058]

标签:leetcode   算法   面试   

原文地址:http://blog.csdn.net/harryhuang1990/article/details/26739481

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!