之字形打印矩阵

Posted 徐岩

tags:

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

题目描述

对于一个矩阵,请设计一个算法,将元素按“之”字形打印。具体见样例。

给定一个整数矩阵mat,以及他的维数nxm,请返回一个数组,其中元素依次为打印的数字。

测试样例:
[[1,2,3],[4,5,6],[7,8,9],[10,11,12]],4,3
返回:[1,2,3,6,5,4,7,8,9,12,11,10]

Solution 1:
class Printer {
public:
    vector<int> printMatrix(vector<vector<int> > mat, int n, int m) {
        // write code here
        vector<int> v;
        for(int i = 0; i < n; ++i) {
            vector<int> temp = mat[i];
            if(i % 2) reverse(temp.begin(), temp.end());
            for(int j = 0; j < m; ++j) {
                v.push_back(temp[j]);
            }
        }
        return v;
    }
};

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

之字形打印矩阵

[算法]“之”字形打印矩阵

8.3 “之”字形打印矩阵

矩阵的操作

《程序员代码面试指南》第八章 数组和矩阵问题 "之"字形打印矩阵

之字形打印矩阵