matrix
wutingyehe
Just for fun
展开
-
LintCode Matrix Zigzag Traversal 矩阵的之字型遍历
Given a matrix of m x n elements (m rows, n columns), return all elements of the matrix in ZigZag-order. 给你一个包含 m x n 个元素的矩阵 (m 行, n 列), 求该矩阵的之字型遍历。Example Given a matrix: [ [1, 2, 3, 4], [5原创 2015-06-24 23:59:23 · 5039 阅读 · 0 评论 -
[LintCode]搜索二维矩阵 II
写出一个高效的算法来搜索m×n矩阵中的值,返回这个值出现的次数。 这个矩阵具有以下特性: 每行中的整数从左到右是排序的。 每一列的整数从上到下是排序的。 在每一行或每一列中没有重复的整数。样例 考虑下列矩阵: [ [1, 3, 5, 7], [2, 4, 7, 8], [3, 5, 9, 10] ] 给出target = 3,返回 2挑战 要求O(m+原创 2016-02-04 17:45:14 · 885 阅读 · 0 评论 -
[LintCode] 螺旋矩阵 Spiral Matrix
给定一个包含 m x n 个要素的矩阵,(m 行, n 列),按照螺旋顺序,返回该矩阵中的所有要素。样例 给定如下矩阵: [ [ 1, 2, 3 ], [ 4, 5, 6 ], [ 7, 8, 9 ] ] 应返回 [1,2,3,6,9,8,7,4,5]。Given a matrix of m x n elements (m rows, n columns), return all原创 2016-04-25 21:37:11 · 2684 阅读 · 0 评论 -
[LintCode] 螺旋矩阵II Spiral Matrix II
Given an integer n, generate a square matrix filled with elements from 1 to n^2 in spiral order.样例 Given n = 3, You should return the following matrix: [ [ 1, 2, 3 ], [ 8, 9, 4 ], [ 7, 6, 5原创 2016-04-26 13:45:52 · 1241 阅读 · 0 评论