摘要:
题目:给你一个正整数 n ,生成一个包含 1 到 n2 所有元素,且元素按顺时针顺序螺旋排列的 n x n 正方形矩阵 matrix 。 示例 1: 输入:n = 3输出:[[1,2,3],[8,9,4],[7,6,5]] 题解: class Solution { public: vector<ve 阅读全文
摘要:
题目:给你一个 m 行 n 列的矩阵 matrix ,请按照 顺时针螺旋顺序 ,返回矩阵中的所有元素。 示例 1: 题解: class Solution { private: static constexpr int directions[4][2] = {{0, 1}, {1, 0}, {0, - 阅读全文