53. Maximum Subarray
题意:一个数组,找到和最大的子串
我的思路
我记得好像On的动态规划来做的?但是想不起来了,先死做,用的前缀和——TLE超时
那就只能想想dp怎么做了
假设dp[i]表示的是以 i 为右端点的最大的…
1.进入谷歌浏览器官网
Google Chrome - Download the Fast, Secure Browser from GoogleGet more done with the new Google Chrome. A more simple, secure, and faster web browser than ever, with Google’s smarts built-in. Download now.http://www.google.cn/intl/en_…
准备四台服务器:
docker0
docker1
docker2
docker3
在docker0服务器上生成公钥和私钥
[rootwww ~]# ssh-keygen -t rsa Generating public/private rsa key pair. Enter file in which to save the key (/root/.ssh/id_rsa): Created directory /root/.ssh. Enter passp…
给你一个只包含 ( 和 ) 的字符串,找出最长有效(格式正确且连续)括号子串的长度。 代码如下:
class Solution {public int longestValidParentheses(String str) {Stack<Integer> s new Stack<>();int res 0;int st…