码迷,mamicode.com
首页 >  
搜索关键字:minimum    ( 3256个结果
html5+css3开发总结
meta标签:width: viewport 的宽度 (范围从 200 到 10,000 ,默认为 980 像素 ) height: viewport 的高度 (范围从 223 到 10,000 ) initial-scale: 初始的缩放比例 (范围从>0到 10 )minimum-scale: ...
分类:Web程序   时间:2014-09-22 18:59:52    阅读次数:416
oh-my-zsh安装与配置
1.安装与配置 Setup oh-my-zshshould work with any recent release of Zsh. The minimum recommended version is 4.3.9. If not already installed, you can install Zsh using the command-line. The automatic...
分类:其他好文   时间:2014-09-22 16:22:53    阅读次数:301
【LeetCode】Palindrome Partitioning II
Palindrome Partitioning IIGiven a strings, partitionssuch that every substring of the partition is a palindrome.Return the minimum cuts needed for a p...
分类:其他好文   时间:2014-09-19 22:21:56    阅读次数:261
【LeetCode】Triangle 解题报告
【题目】 Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below. For example, given the following triangle [ [2], [...
分类:其他好文   时间:2014-09-18 11:29:23    阅读次数:201
POJ 2516 Minimum Cost (最小费用最大流)
POJ 2516 Minimum Cost  链接:http://poj.org/problem?id=2516 题意:有M个仓库,N个商人,K种物品。先输入N,M,K。然后输入N行K个数,每一行代表一个商人要购买的物品,其中K个数分别表示要购买的每件商品数。然后是M行K个数,每行表示仓库里的情况,其中K个数分别每种物品的库存量。接下来是K个矩阵,每个矩阵为N*M,分别表示第K种物...
分类:其他好文   时间:2014-09-17 21:53:32    阅读次数:311
一起学习CMake – 01
一起学习CMake – 01本节介绍CMake里最常用的三个命令,分别是cmake_minimum_required; project; add_executable等。CMake是个好东西,在使用VTK, ITK, IGSTK, OpenCV, DCMTK等开源工具包时,是离不开CMake的,甚至...
分类:其他好文   时间:2014-09-17 14:56:42    阅读次数:303
进度条应用(progressbar)
for ($i = 0; $i -lt 100; $i++){$progressbar1.Minimum = 0$progressbar1.Maximum = 99$progressbar1.Value = $i#Start-Sleep 1}
分类:其他好文   时间:2014-09-17 11:57:32    阅读次数:155
LeetCode Minimum Window Substring
class Solution {private: int shd_cnt[256]; int cur_cnt[256];public: string minWindow(string S, string T) { int slen = S.length(); ...
分类:Windows程序   时间:2014-09-16 21:46:51    阅读次数:224
Leetcode dp Edit Distance
Edit Distance  Total Accepted: 14997 Total Submissions: 59129My Submissions Given two words word1 and word2, find the minimum number of steps required to convert word1 to word2. (each oper...
分类:其他好文   时间:2014-09-16 19:01:41    阅读次数:152
[leetcode] Minimum Depth of Binary Tree ,到叶子节点的最小距离 (python)
Given a binary tree, find its minimum depth.The minimum depth is the number of nodes along the shortest path from the root node down to the nearest le...
分类:编程语言   时间:2014-09-16 18:48:00    阅读次数:242
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!