码迷,mamicode.com
首页 >  
搜索关键字:subarray    ( 846个结果
Maximum Product Subarray 最大连续乘积子集
Find the contiguous subarray within an array (containing at least one number) which has the largest product.For example, given the array[2,3,-2,4],the...
分类:其他好文   时间:2014-10-21 22:52:27    阅读次数:278
[LeetCode] Maximum Product Subarray
题目描述:Find the contiguous subarray within an array (containing at least one number) which has the largest product.For example, given the array[2,3,-2,4...
分类:其他好文   时间:2014-10-20 08:38:54    阅读次数:125
Leetcode | Maximum Product Subarray
Leetcode 加新题了Find the contiguous subarray within an array (containing at least one number) which has the largest product.For example, given the array ...
分类:其他好文   时间:2014-10-19 15:36:04    阅读次数:251
【LeetCode】Maximum Product Subarray 求连续子数组使其乘积最大
Add Date2014-09-23Maximum Product SubarrayFind the contiguous subarray within an array (containing at least one number) which has the largest product....
分类:编程语言   时间:2014-10-17 00:33:53    阅读次数:316
Maximum Product Subarray 求最大子数组乘积
这个求最大子数组乘积问题是由最大子数组之和问题演变而来,但是却比求最大子数组之和要复杂,因为在求和的时候,遇到0,不会改变最大值,遇到负数,也只是会减小最大值而已。而在求最大子数组乘积的问题中,遇到0会使整个乘积为0,而遇到负数,则会使最大乘积变成最小乘积,正因为有负数和0的存在,使问题变得复杂了不...
分类:编程语言   时间:2014-10-16 17:11:32    阅读次数:274
1014------算法笔记----------Maximum Product Subarray 最大乘积子数组
1.题目Find the contiguous subarray within an array (containing at least one number) which has the largest product.For example, given the array[2,3,-2,4]...
分类:编程语言   时间:2014-10-15 19:29:41    阅读次数:228
Maximum Product Subarray
Find the contiguous subarray within an array (containing at least one number) which has the largest product. For example, given the array [2,3,-2,4],t...
分类:其他好文   时间:2014-10-15 12:52:20    阅读次数:160
最大子序列积
最大子序列积问题?? leetcode Find the contiguous subarray within an array (containing at least one number) 线性时间算法...
分类:其他好文   时间:2014-10-13 23:44:27    阅读次数:254
1 Maximum Product Subarray_Leetcode
Find the contiguous subarray within an array (containing at least one number) which has the largest product.For example, given the array[2,3,-2,4],the...
分类:其他好文   时间:2014-10-12 17:19:08    阅读次数:209
Leetcode_num15_Maximun 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,?5,4], the contiguous subarray [4,?1,2,1]...
分类:其他好文   时间:2014-10-12 03:20:27    阅读次数:193
846条   上一页 1 ... 77 78 79 80 81 ... 85 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!