2014-05-10 20:31 题目链接 原题: Given an array of integers and a length L, find a sub-array of length L such that the products of all integers are the biggest. Example: Input: {, , -, -, }, Output: {-,-,} 题目:给定一个整数数组,其中包含正数.负数或者0.请找出乘积最大的子数组(子数组是连续的,子序列可以不…