码迷,mamicode.com
首页 >  
搜索关键字:largest rectangle in    ( 2497个结果
Largest Rectangle in Histogram
Largest Rectangle in Histogram
分类:其他好文   时间:2014-06-29 15:02:43    阅读次数:217
函数式编程入门 lisp
#lang slideshow(define c (circle 10))(define r (rectangle 10 20));定义一个调用函数(define (square n) (filled-rectangle n n));局部绑定(define (four p) (define tw.....
分类:其他好文   时间:2014-06-07 05:15:21    阅读次数:315
Maximum Subarray
Find the contiguous subarray within an array (containing at least one number) which has the largest sum.For example, given the array[?2,1,?3,4,?1,2,1,...
分类:其他好文   时间:2014-06-04 19:30:13    阅读次数:230
针对上课内容的想法
int Largest(int list[], int length){ int i,max; for(i = 0; i max) { max=list[i]; } } return max;}首先进行...
分类:其他好文   时间:2014-06-03 09:53:50    阅读次数:267
杭电1081(动态规划)
题目:Problem DescriptionGiven a two-dimensional array of positive and negative integers, a sub-rectangle is any contiguous sub-array of size 1 x 1 or gr...
分类:其他好文   时间:2014-05-31 11:35:43    阅读次数:271
uva 11324 The Largest Clique(强连通分量缩点+DAG动态规划)
http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=25&page=show_problem&problem=2299题意:输入n和m,有n个点和m条有向边,求出一个节点集合包括的节点个数最多,而...
分类:其他好文   时间:2014-05-31 03:26:25    阅读次数:239
Coursera Algorithm II PA2 Q2
题意:what is the largest value ofksuch that there is ak-clustering with spacing at least 3? That is, how many clusters are needed to ensure that no pair...
分类:其他好文   时间:2014-05-29 20:39:26    阅读次数:305
20140526-一个从pdf转换成图片的类,工作当中有用到
20140526-一个从pdf转换成图片的类,工作当中有用到 package com.jako.database.model; import java.awt.Image; import java.awt.Rectangle; import java.awt.image.BufferedImage;...
分类:其他好文   时间:2014-05-27 17:11:55    阅读次数:368
57. 数对之差的最大值:4种方法详解与总结[maximum difference of array]
maximum/largest difference of array
分类:其他好文   时间:2014-05-26 17:07:38    阅读次数:332
hdu2136Largest prime factor (关建在求素数,有点意思的题)
Problem Description Everybody knows any number can be combined by the prime number. Now, your task is telling me what position of the largest prime factor. The position of prime 2 is 1, prime 3 is ...
分类:其他好文   时间:2014-05-26 04:29:14    阅读次数:371
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!