<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta name="viewport" content="maximum-scale=1.0,minimum-scale=1.0,user-scalable=0,width=device ...
分类:
移动开发 时间:
2018-11-07 00:46:35
阅读次数:
183
https://leetcode.com/problems/minimum-height-trees/discuss/76055/Share-some-thoughts For a undirected graph with tree characteristics, we can choose a... ...
分类:
其他好文 时间:
2018-11-06 11:09:40
阅读次数:
116
Given two words word1 and word2, find the minimum number of steps required to make word1 and word2 the same, where in each step you can delete one cha ...
分类:
其他好文 时间:
2018-11-05 21:28:13
阅读次数:
142
在这个里面主要有这几个属性: 1.width - viewport的宽度 2.height - viewport的高度 3.initial-scale - 初始的缩放比例 4.minimum-scale - 允许用户缩放到的最小比例 5.maximum-scale - 允许用户缩放到的最大比例 6. ...
分类:
其他好文 时间:
2018-11-05 10:10:33
阅读次数:
165
分析 难度 易 来源 https://leetcode.com/problems/minimum-depth-of-binary-tree 题目 Given a binary tree, find its minimum depth. The minimum depth is the number ...
分类:
其他好文 时间:
2018-11-04 17:08:47
阅读次数:
145
111. minimum depth of binary tree 111. minimum depth of binary tree Given a binary tree, find its minimum depth. The minimum depth is the number of no... ...
分类:
其他好文 时间:
2018-11-03 18:17:11
阅读次数:
156
Minimum Inversion Number Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 25092 Accepted Submissio ...
分类:
其他好文 时间:
2018-11-01 22:28:44
阅读次数:
237
1 class Solution { 2 public int minSubArrayLen(int s, int[] nums) { 3 if(nums.length == 0) return 0; 4 int count = 0; 5 int i = 0, j = 0; 6 int min = ... ...
分类:
其他好文 时间:
2018-11-01 11:49:49
阅读次数:
108
<meta id="viewport" name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0 minimal-ui" ...
分类:
Web程序 时间:
2018-10-31 21:17:25
阅读次数:
249
原文Xilinx官方文档《ug898-vivado-embedded-design》第三章 一、MicroBlaze处理器设计介绍(略) 二、创建带有MicroBlaze处理器的IP设计 使用Vivado进行MicroBlaze设计和使用ISE有很大的不同。(译者加:所以你要仔细看下面的说明) Vi ...
分类:
其他好文 时间:
2018-10-31 20:05:11
阅读次数:
198