四则运算 加减乘除 *、-、*、/ 指数运算^ 判断是否相等 这里的%表示注释 逻辑运算 更换Octave提示符 将提示符更换为>> Octave变量 向量和矩阵 v = 1:0.1:2 表示1开始 2结束 0.1步长 创建一个矩阵,并全置一个值 创建一个矩阵,并全置0 获得随机值矩阵 符合高斯分布 ...
分类:
其他好文 时间:
2019-09-12 13:22:57
阅读次数:
164
A. Function Height 由于只能提升$x$为奇数的点,每个三角形的底一定为$2$, 则要求我们求: $2 (h_1 + h_2 + … + h_n) / 2 = k$,使$max(h_1, h_2…h_n)$最小。 则应使每个$h$平摊重量,答案即为$\lceil n/k \rceil ...
分类:
其他好文 时间:
2019-07-29 00:43:28
阅读次数:
125
/** * This problem was asked by Google. In linear algebra, a Toeplitz matrix is one in which the elements on any given diagonal from top left to botto... ...
分类:
其他好文 时间:
2019-06-30 09:50:16
阅读次数:
80
[TOC] 声明 本文不介绍dfs、dp算法的基础思路,有想了解的可以自己找资源学习。 本文适合于刚刚接触dfs和dp算法的人,发现两种算法间的内在联系。 本人算法之路走之甚短,如果理解出现问题欢迎大家的指正,我会分享基于我目前理解到的算法思想。 dfs与dp的关系 很多情况下,dfs和dp两种解题 ...
分类:
编程语言 时间:
2019-05-31 19:48:07
阅读次数:
276
Given a matrix of M x N elements (M rows, N columns), return all elements of the matrix in diagonal order as shown in the below image. Example: Note: ...
分类:
其他好文 时间:
2019-05-27 19:21:03
阅读次数:
141
时间限制:10000ms 单点时限:1000ms 内存限制:256MB 时间限制:10000ms 单点时限:1000ms 内存限制:256MB 描述 There are N queens in an infinite chessboard. We say two queens may attack ...
分类:
其他好文 时间:
2019-05-19 10:25:29
阅读次数:
131
题目要求 Given a matrix A, return the transpose of A. The transpose of a matrix is the matrix flipped over it's main diagonal, switching the row and colum ...
分类:
其他好文 时间:
2019-02-05 10:37:29
阅读次数:
192
This problem was asked by Google. On our special chessboard, two bishops attack each other if they share the same diagonal. This includes bishops that ...
分类:
其他好文 时间:
2019-02-05 09:17:21
阅读次数:
144
对角矩阵(diagonal matrix):只在主对角线上含有非零元素,其它位置都是零,对角线上的元素可以为0或其它值。形式上,矩阵D是对角矩阵,当且仅当对于所有的i≠j, Di,j= 0. 单位矩阵就是对角矩阵,对角元素全部是1。我们用diag(v)表示一个对角元素由向量v中元素给定的对角方阵。对 ...
分类:
编程语言 时间:
2019-01-25 15:17:57
阅读次数:
234
思路:当m > k时输出-1(设m是较大的数),当m-n是奇数时有一步不能走对角线所以k--,当走对角线可以直接到达终点,如果剩余的步数是奇数则有两步不能走对角线所以k - 2。(画图观察规律) ...
分类:
其他好文 时间:
2018-12-30 16:28:47
阅读次数:
207