码迷,mamicode.com
首页 >  
搜索关键字:minimum    ( 3256个结果
Minimum Path Sum
https://oj.leetcode.com/problems/minimum-path-sum/Given amxngrid filled with non-negative numbers, find a path from top left to bottom right whichmini...
分类:其他好文   时间:2015-01-23 17:49:43    阅读次数:175
LeetCode - Min Stack
Min Stack2015.1.23 12:13Design a stack that supports push, pop, top, and retrieving the minimum element in constant time.push(x) -- Push element x ont...
分类:其他好文   时间:2015-01-23 13:19:41    阅读次数:203
LeetCode - Find Minimum in Rotated Sorted Array II
Find Minimum in Rotated Sorted Array II2015.1.23 11:41Suppose a sorted array is rotated at some pivot unknown to you beforehand.(i.e.,0 1 2 4 5 6 7mig...
分类:其他好文   时间:2015-01-23 13:08:41    阅读次数:135
Leetcode#33 Search in Rotated Sorted Array
原题地址跟Find Minimum in Rotated Array类似,折半查找将A平均分成两半A[l..m]和A[m+1..r]如果target可能出现在A[l..m],则保留A[l..m],去掉A[m+1..r]反之,保留A[m+1..r],去掉A[l..m]。根据区间的连续性判断target...
分类:其他好文   时间:2015-01-23 12:41:22    阅读次数:176
【LeetCode】Minimum Depth of Binary Tree 二叉树的最小深度 java
【LeetCode】Minimum Depth of Binary TreeGiven a binary tree, find its minimum depth.The minimum depth is the number of nodes along the shortest path fro...
分类:编程语言   时间:2015-01-23 12:40:08    阅读次数:146
LeetCode155——Min Stack
Design a stack that supports push, pop, top, and retrieving the minimum element in constant time. push(x) -- Push element x onto stack.pop() -- Removes the element on top of the stack.top() -- Get ...
分类:其他好文   时间:2015-01-23 11:11:39    阅读次数:131
Leetcode#76 Minimum Window Substring
原题地址用两个指针分别记录窗口的左右边界,移动指针时忽略那些出现在S种但是没有出现在T中的字符1. 扩展窗口。向右移动右指针,当窗口内的字符即将多于T内的字符时,停止右移2. 收缩窗口。向右调整左指针,当窗口内的字符即将少于T内的字符时,停止右移3. 统计结果。如果窗口内的字符包含了T内的所有字符,...
分类:Windows程序   时间:2015-01-22 17:19:29    阅读次数:277
html5 meta标签
width-viewport的宽度height-viewport的高度initial-scale-初始的缩放比例minimum-scale-允许用户缩放到的最小比例maximum-scale-允许用户缩放到的最大比例user-scalable-用户是否可以手动缩放
分类:Web程序   时间:2015-01-22 12:51:08    阅读次数:124
LeetCode - Find Minimum in Rotated Sorted Array
Find Minimum in Rotated Sorted Array2015.1.22 07:07Suppose a sorted array is rotated at some pivot unknown to you beforehand.(i.e.,0 1 2 4 5 6 7might ...
分类:其他好文   时间:2015-01-22 08:13:52    阅读次数:139
hdu 1385 Minimum Transport Cost (Floyd + 字典序打印路径)
Minimum Transport Cost Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 7822    Accepted Submission(s): 2028 Problem Description T...
分类:其他好文   时间:2015-01-21 15:19:38    阅读次数:169
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!