Input: [2,3,-2,4] Output: 6 Explanation: [2,3] has the largest product 6. Input: [2,-5,-2,-4,3] Output: 24 Explanation: [-2,-4,3] has the largest prod ...
分类:
其他好文 时间:
2020-03-07 13:08:31
阅读次数:
54
给定一个整数数组 ,找出一个序列中乘积最大的连续子序列(该序列至少包含一个数)。 示例 1: 示例 2: https://leetcode cn.com/problems/maximum product subarray/ 动态规划 其实这道题最直接的方法就是用 DP 来做,而且要用两个 dp 数组 ...
分类:
其他好文 时间:
2020-03-06 13:34:45
阅读次数:
59
递归 本系列文章在Github: "StevenEco" 以及 "WarrenRyan" 同步更新 简介 程序调用自身的编程技巧称为递归 (recursion) 。递归做为一种算法在程序设计语言中广泛应用。 一个过程或函数在其定义或说明中有直接或间接调用自身的一种方法,它通常把一个大型复杂的问题层层 ...
分类:
编程语言 时间:
2020-03-06 09:15:40
阅读次数:
58
Given a binary tree, find the subtree with maximum average. Return the root of the subtree. Example 1 Input: {1,-5,11,1,2,4,-2} Output:11 Explanation: ...
分类:
其他好文 时间:
2020-03-05 13:42:34
阅读次数:
56
Given a string s, find the longest palindromic substring in s. You may assume that the maximum length of s is 1000. Example 1: Input: "babad" Output: ...
分类:
其他好文 时间:
2020-03-05 11:52:43
阅读次数:
60
本文参考以下文章 "Maximum flow" Flow Networks基本性质 在图论中,网络流被定义为一个有向图,其中包含一个起点 S ource和一个终点 T arget,以及几条连接各顶点的边。每条边都有各自的容量 C apacity,这是边所能允许的最大流量 网络流中的流量$f$应满足如 ...
分类:
其他好文 时间:
2020-03-04 23:05:40
阅读次数:
69
1、 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="maximum-scale=1.0,minimum-scale=1.0,user-scalable=0,width=devic ...
递归(recursion) 又称递回,在数学与计算机科学中,是指在函数的定义中使用函数自身的方法。 一般来说,递归需要有边界条件、递归前进段和递归返回段。当边界条件不满足时,递归前进;当边界条件满足时,递归返回。 构成递归需具备的条件: 1. 子问题须与原始问题为同样的事,且更为简单; 2. 不能无 ...
分类:
其他好文 时间:
2020-03-03 21:01:24
阅读次数:
174
一.安装MySQL 1. 1 bit[(M)] 2 二进制位(101001),m表示二进制位的长度(1-64),默认m=1 3 4 tinyint[(m)] [unsigned] [zerofill] 5 6 小整数,数据类型用于保存一些范围的整数数值范围: 7 有符号: 8 -128 ~ 127. ...
分类:
数据库 时间:
2020-03-02 20:40:29
阅读次数:
109
Codeforces Round #625 (Div. 2, based on Technocup 2020 Final Round) B. Journey Planning time limit per test 2 seconds memory limit per test 256 megaby ...
分类:
其他好文 时间:
2020-03-02 13:13:48
阅读次数:
68