左侧单位 Chart1.Axes.Left.Minimum := 0; Chart1.Axes.Left.Maximum := Series1.YValues.MaxValue * 2;
分类:
其他好文 时间:
2015-11-19 19:08:20
阅读次数:
114
Given an array of integers and a numberk, find knon-overlappingsubarrays which have the largest sum.The number in each subarray should becontiguous.Re...
分类:
其他好文 时间:
2015-11-19 07:01:51
阅读次数:
355
TRACERT命令编辑Tracert(跟踪路由)是路由跟踪实用程序,用于确定 IP数据包访问目标所采取的路径。Tracert 命令使用用 IP 生存时间 (TTL) 字段和 ICMP 错误消息来确定从一个主机到网络上其他主机的路由.其命令格式如下。tracert [-d] [-h maximum_h...
分类:
其他好文 时间:
2015-11-19 00:31:11
阅读次数:
181
DescriptionGiven a 2-dimensional array of positive and negative integers, find the sub-rectangle with the largest sum. The sum of a rectangle is the s...
分类:
其他好文 时间:
2015-11-18 10:36:20
阅读次数:
151
1. TitleMaximum Subarray2. Http addresshttps://leetcode.com/problems/maximum-subarray/3. The questionFind the contiguous subarray within an array (con...
分类:
其他好文 时间:
2015-11-16 22:25:53
阅读次数:
132
1. TitleMaximum Product Subarray2. Http addresshttps://leetcode.com/problems/maximum-product-subarray/3. The questionFind the contiguous subarray with...
分类:
其他好文 时间:
2015-11-16 22:23:03
阅读次数:
207
In?the topic describing TCP‘s Maximum Segment Size (MSS) parameter, I explained the trade-off in determining the optimal size of TCP segments. If segments are too large, we risk having them become...
Maximum sumTime Limit:1000MSMemory Limit:65536KTotal Submissions:37035Accepted:11551DescriptionGiven a set of n integers: A={a1, a2,..., an}, we defin...
分类:
其他好文 时间:
2015-11-13 14:32:19
阅读次数:
171
关于二叉树,目前在leetcode中遇到了两道题目,一道是二叉树的最大深度,一道是二叉树的最小深度;关于二叉树,整好借此机会再学习一下;二叉树是一种特殊的树,在二叉树中每个节点最多有两个子节点,一般称为左子节点和右子节点(或左孩子和右孩子),并且二叉树的子树有左右之分,其次序不能任意颠倒。二叉树是递...
分类:
其他好文 时间:
2015-11-13 06:18:37
阅读次数:
274
LeetCode -- Sliding Window Maximum...