```C++ include include include include include include include include include include include define de(x) cout P; typedef vector V; typedef queue Q; ...
分类:
其他好文 时间:
2018-06-24 23:54:53
阅读次数:
201
maven 代码 如果中文乱码,可以先把待处理的内容做一次URLEncoder,变成没有汉字的内容再去调用方法就可以了。 ...
分类:
编程语言 时间:
2018-06-23 22:37:32
阅读次数:
453
Given a matrix consists of 0 and 1, find the distance of the nearest 0 for each cell. The distance between two adjacent cells is 1. Example 1: Input: ...
分类:
其他好文 时间:
2018-06-23 14:34:18
阅读次数:
172
题目链接 题目大意:顺时针一次旋转矩阵。例子如下: 法一:新开辟一个数组空间,将每一行的数值赋值给每一列。代码如下(耗时3ms): 1 public void rotate(int[][] matrix) { 2 int[][] res = new int[matrix.length][matrix ...
分类:
其他好文 时间:
2018-06-22 13:39:38
阅读次数:
166
#inlcude<stdio.h> #define V_SIZE 8 #define E_SIZE 10 typedef struct { char vertex[V_SIZE]; int adjacency_matrix[V_SIZE][V_SIZE]; }Un_Graph; int visite ...
分类:
其他好文 时间:
2018-06-21 23:50:24
阅读次数:
299
对于定义在$\mathbb{N}$上的函数$F(n)$和$f(n)$,若满足: $F(n) = \sum\limits_{d\mid n}f(d)$ 则有: $f(n) = \sum\limits_{d\mid n}\mu(d)F(\frac{n}{d})$ 其中$\mu(d)$为莫比乌斯函数: 令 ...
分类:
其他好文 时间:
2018-06-21 19:41:54
阅读次数:
222
1、TensorFlow系统架构 如图为TensorFlow的系统架构图: TensorFlow的系统架构图,自底向上分为设备层和网络层、数据操作层、图计算层、API层、应用层,其中设备层和网络层,数据操作层,图计算层是TensorFlow的核心层。 网络通信层和设备层: 网络通信层包括个gRPC( ...
分类:
其他好文 时间:
2018-06-21 13:31:20
阅读次数:
329
Given a binary matrix A, we want to flip the image horizontally, then invert it, and return the resulting image. To flip an image horizontally means t ...
分类:
其他好文 时间:
2018-06-20 14:34:08
阅读次数:
173
dijkstra算法学习 一、最短路径 单源最短路径:计算源点到其他各顶点的最短路径的长度 全局最短路径:图中任意两点的最短路径 Dijkstra、Bellman-Ford、SPFA求单源最短路径 Floyed可以求全局最短路径,但是效率比较低 SPFA算法是Bellman-Ford算法的队列优化 ...
分类:
编程语言 时间:
2018-06-18 23:23:29
阅读次数:
251
题解 转移方程好写吧 一个一维递推式 然后我们可以构造矩阵优化 代码 c++ include include include define mod 7777777 int K,n; define LL long long const int maxn = 11; struct matrix { in ...
分类:
其他好文 时间:
2018-06-17 22:26:51
阅读次数:
234