Say you have an array for which the ith element is the price of a given stock on day i. Design an algorithm to find the maximum profit. You may comple ...
分类:
其他好文 时间:
2017-07-20 22:21:54
阅读次数:
135
https://leetcode.com/problems/maximum-average-subarray-i/#/description 求指定长度为 k 的子数组的最大均值,基本思路是用长度为k 的滑动窗口扫一遍原数组,然后记录最大子数组的MaxSum,最后返回MaxSum/k 可以优化的部分 ...
分类:
其他好文 时间:
2017-07-20 15:22:14
阅读次数:
160
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, ...
分类:
其他好文 时间:
2017-07-20 10:15:31
阅读次数:
135
(1)处理器概述 (2)处理器模块架构 author:pkf time:7-19 qq:1327706646 (1) Processor Core z ARM Cortex A17 quad-core@maximum 1.4 GHz ? 32 KB L1 I-cache, 32 KB L1 D-ca ...
分类:
其他好文 时间:
2017-07-19 19:29:19
阅读次数:
3533
<!DOCTYPE html> <html><head><meta charset="utf-8"><title>预览页</title><meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1 ...
分类:
移动开发 时间:
2017-07-19 14:42:28
阅读次数:
306
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, ...
分类:
编程语言 时间:
2017-07-19 10:41:05
阅读次数:
241
attribute method: #include <stdio.h> struct packed { char a; int b; } __attribute__((packed)); struct not_packed { char a; int b; }; int main(void) { ...
分类:
其他好文 时间:
2017-07-18 18:48:42
阅读次数:
202
Say you have an array for which the ith element is the price of a given stock on day i. Design an algorithm to find the maximum profit. You may comple ...
分类:
其他好文 时间:
2017-07-18 10:05:23
阅读次数:
99
题目: Given a binary tree, find its maximum depth. The maximum depth is the number of nodes along the longest path from the root node down to the farthe ...
分类:
编程语言 时间:
2017-07-17 23:45:28
阅读次数:
212
Given an integer array, find three numbers whose product is maximum and output the maximum product. Example 1: Example 2: Note: 将数组按照逆序排序后,如果数组元素都是整数, ...
分类:
其他好文 时间:
2017-07-17 17:17:02
阅读次数:
172