array
Yanxi1122
这个作者很懒,什么都没留下…
展开
-
leetcode-59 Spiral Matrix
这是一道旋转矩阵的题,题目如下:Given an integer n, generate a square matrix filled with elements from 1 ton2 in spiral order.For example,Given n = 3, You should return the following matrix:[ [ 1, 2, 3原创 2017-04-07 15:22:25 · 170 阅读 · 0 评论 -
leetcode-73 set matrix zeros
Given a m x n matrix, if an element is 0, set its entire row and column to 0. Do it in place. 题意是将矩阵中,有0的行列值均置为0.这道题想要原址,首先需要记录下首行、首列,是否有0。其次从2行2列开始统计,如果有0,则将此位置的首行、首列位置记为0,实现原址。在改的时候应当注意,首行首列的值原创 2017-04-25 11:49:03 · 300 阅读 · 0 评论