码迷,mamicode.com
首页 >  
搜索关键字:largest rectangular    ( 1806个结果
[LeetCode] 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,...
分类:编程语言   时间:2015-03-30 11:10:46    阅读次数:154
Sicily 1422. Table Tennis
1422. Table Tennis Constraints Time Limit: 1 secs, Memory Limit: 32 MB Description There is a rectangular pool table ABCD with side lengths m and n, where m and n are integers with m...
分类:其他好文   时间:2015-03-30 09:20:57    阅读次数:179
【课堂练习】输出一个数组中的最大值并测试
设计思想用函数封装求数组最大值的代码,主函数中调用函数实现功能。源程序代码#include using namespace std;int Largest(int list[],int length){ int i; int max=list[0]; for (i=0;imax) { max=lis...
分类:编程语言   时间:2015-03-29 17:48:31    阅读次数:165
软件工程概论---max单元测试
题目:一个单元测试,查找list[]中的最大值编写一个程序对Largest函数进行测试,列举所有测试用例。思路:首先确保数组不为空,和数组长度不为0,否则输入错误。根据老师所给的函数写一个主函数,在运行中进行测试。自己写的主函数输入输出就可以了。#includeusing namespace std...
分类:其他好文   时间:2015-03-29 16:29:44    阅读次数:136
Flip Game-poj 1753
DescriptionFlip game is played on a rectangular 4x4 field with two-sided pieces placed on each of its 16 squares. One side of each piece is white and ...
分类:其他好文   时间:2015-03-29 10:39:13    阅读次数:107
class 3 求数组中的最大值(单元测试)
1.问题引出:int Largest(int list[], int length){ int i,max; for(i = 0; i max) { max=list[i]; } } return ...
分类:编程语言   时间:2015-03-28 23:13:23    阅读次数:139
课堂练习--单元测试
1.程序代码//郭婷 20132916 信1305 2015/3/27#includeusing namespace std;int Largest(int list[], int length){ int i, max; max = list[0]; for (i = 0; i ...
分类:其他好文   时间:2015-03-28 23:12:22    阅读次数:202
代码规范课堂作业
题目:查找list[]中的最大值:int Largest(int list[], int length);思路:运用Largest函数对数组进行最大值运算,考虑数组为空和长度为0情况,给最大值赋值为数组第一个数在与数组中的每一个数比较大小较大就替换。代码:#include using namespa...
分类:其他好文   时间:2015-03-28 23:03:07    阅读次数:154
课堂作业第四周课上作业一
题目要求查找list[]中的最大值:int Largest(int list[], int length);nn首份实现代码如下:int Largest(int list[], int length){ int i,max; for(i = 0; i max) { max=list[i]; }...
分类:其他好文   时间:2015-03-28 17:13:26    阅读次数:207
程序单元测试
题目 查找数组中的最大值思路:先设计一个求数组中最大值的一个函数,再由主函数调用。代码实现#includeusing namespace std;int largest(int a[],int length){ int i,max=a[0]; if(a==NULL || length==0)...
分类:其他好文   时间:2015-03-28 17:05:03    阅读次数:107
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!