对于一个矩阵,请设计一个算法从左上角(mat[0][0])开始,顺时针打印矩阵元素。 给定int矩阵mat,以及它的维数nxm,请返回一个数组,数组中的元素为矩阵元素的顺时针输出。 测试样例: [[1,2],[3,4]],2,2 返回:[1,2,4,3]
加载中...
import java.util.*; public class Printer { public int[] clockwisePrint(int[][] mat, int n, int m) { // write code here } }
class Printer { public: vector
clockwisePrint(vector
> mat, int n, int m) { // write code here } };
# -*- coding:utf-8 -*- class Printer: def clockwisePrint(self, mat, n, m): # write code here
class Printer { public int[] clockwisePrint(int[][] mat, int n, int m) { // write code here } }
/** * * @param mat int整型二维数组 * @param n int整型 * @param m int整型 * @return int整型一维数组 */ function clockwisePrint( mat , n , m ) { // write code here } module.exports = { clockwisePrint : clockwisePrint };
# -*- coding:utf-8 -*- class Solution: def clockwisePrint(self, mat, n, m): # write code here
package main /** * * @param mat int整型二维数组 * @param n int整型 * @param m int整型 * @return int整型一维数组 */ func clockwisePrint( mat [][]int , n int , m int ) []int { // write code here }
/** * * @param mat int整型二维数组 * @param matRowLen int mat数组行数 * @param matColLen int* mat数组列数 * @param n int整型 * @param m int整型 * @return int整型一维数组 * @return int* returnSize 返回数组行数 */ int* clockwisePrint(int** mat, int matRowLen, int* matColLen, int n, int m, int* returnSize ) { // write code here }