Given an integer array nums, find the contiguous subarray (containing at least one number) which has the largest sum and return its sum. Example: Foll ...
分类:
编程语言 时间:
2018-06-21 11:32:42
阅读次数:
144
Given an integer array nums, find the contiguous subarray within an array (containing at least one number) which has the largest product. Example 1: E ...
分类:
编程语言 时间:
2018-06-21 11:31:00
阅读次数:
236
HDU 2586 题意:一棵树,多次询问任意两点的路径长度。 LCA:最近公共祖先Least Common Ancestors。两个节点向根爬,第一个碰在一起的结点。 求出x, y的最近公共祖先lca后,假设dist[x]为x到根的距离,那么x->y的距离为dist[x]+dist[y]-2*dis ...
分类:
其他好文 时间:
2018-06-18 01:15:15
阅读次数:
159
747_Largest Number At Least Twice of Others [TOC] Description In a given integer array , there is always exactly one largest element. Find whether the ...
分类:
其他好文 时间:
2018-06-17 12:37:13
阅读次数:
183
并查集 参考博客: shadowwalker9 简介 并查集(Union-find Sets)是一种非常精巧而实用的数据结构,它主要用于处理一些不相交集合的合并问题。一些常见的用途有求连通子图、求最小生成树的 Kruskal 算法和求最近公共祖先(Least Common Ancestors, LC ...
分类:
其他好文 时间:
2018-06-16 22:39:52
阅读次数:
209
Indeed there are many different tourist routes from our city to Rome. You are supposed to find your clients the route with the least cost while gainin ...
分类:
其他好文 时间:
2018-06-14 01:14:55
阅读次数:
194
对于一些状态字段以前时兴用常量,现在时兴用枚举,虽然阅读体验极佳,但是传值的时候还是会有些麻烦,需要设置一下转换器.比如: 我们定义了如上一个类,其中的一个成员变量是枚举,为了能正常的接收前端的值,一般会给这个枚举定义个转换器来实现String到枚举的转换.但是呢同事发现不定义这个转换器依然可以接收 ...
分类:
其他好文 时间:
2018-06-13 14:35:08
阅读次数:
220
数据库连接和事务管理,是数据库应用中的最重要概念之一。做过的人,都会头疼:何时Open一个连接?何时Start一个事务?何时Dispose这个连接?... ABP框架试图用一个叫做UnitOfWork的模型来解决这些。实际开发中,引入UnitOfWork,同时也会带来一些坑。 这个会抛Excepti ...
分类:
其他好文 时间:
2018-06-13 11:44:53
阅读次数:
698
题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=1213 How Many Tables Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)T ...
分类:
其他好文 时间:
2018-06-11 22:13:42
阅读次数:
135
round-robin 轮询方式,即轮流调度,默认方式least-connected 最小连接ip-hash IP hash,基于客户端的IP来选择服务器,一般用在保持会话的场景例1:基本配置http { upstream myapp1 { server srv1.example.com; serv... ...
分类:
其他好文 时间:
2018-06-08 00:55:49
阅读次数:
179