45. Single Number 在个数都为2的数组中找到个数为1的数 46. Missing Number 在数组中找到从0到n缺失的数字 47. Find the Difference 找两个字符串总t中多出来的那个字符 48. Linked List Cycle 判断一个链表是否有环 49. ...
分类:
其他好文 时间:
2017-09-19 21:25:00
阅读次数:
145
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=6214 题意:求边数最小的割。 解法: 建边的时候每条边权 w = w * (E + 1) + 1; 这样得到最大流 maxflow / (E + 1) ,最少割边数 maxflow % (E + 1) ...
分类:
其他好文 时间:
2017-09-18 20:37:44
阅读次数:
245
hdu 6214 Smallest Minimum Cut[最大流] 题意:求最小割中最少的边数。 题解:对边权乘个比边大点的数比如300,再加1 ,最后,最大流对300取余就是边数啦。。 1 #include<iostream> 2 #include<cstdio> 3 #include<cstr ...
分类:
其他好文 时间:
2017-09-17 20:07:48
阅读次数:
209
题目: Given a binary search tree with non-negative values, find the minimum absolute difference between values of any two nodes. Example: Note: There ar ...
分类:
编程语言 时间:
2017-09-14 21:39:56
阅读次数:
154
题目: Given an array of integers, find out whether there are two distinct indices i and j in the array such that the absolute difference between nums[i] ...
分类:
编程语言 时间:
2017-09-14 18:47:27
阅读次数:
140
Note: k different could be [1, k+1] are in wiggle sort order. Then there are k different numbers. But in this case, the last difference definitely wil ...
分类:
其他好文 时间:
2017-09-10 14:23:34
阅读次数:
109
When using Native SQL to directly manipulate database tables, it makes a difference to use COMMIT WORK key words compared to not using. If we updated ...
分类:
其他好文 时间:
2017-09-08 16:20:41
阅读次数:
222
Canvas 方法详解 1:translate(float dx, float dy) 图: 2:clipRect方法 先看Op的几个属性: Region.Op.REPLACE //后者的范围将全部进行显示,并覆盖交集Op.DIFFERENCE; // 显示前者与后者差集 Op.INTERSECT; ...
分类:
其他好文 时间:
2017-09-08 13:31:04
阅读次数:
155
题目描述 已知一个长度为n的由小写字母组成的字符串,求其中连续的一段,满足该段中出现最多的字母出现的个数减去该段中出现最少的字母出现的个数最大。求这个个数。 输入 第一行,n第二行,该字符串1<=n<=1000000 输出 一行,表示结果 样例输入 10 aabbaaabab 样例输出 3 题解 d ...
分类:
其他好文 时间:
2017-09-05 21:53:22
阅读次数:
147
create or replace procedure find_difference(db_link in varchar2) is /* 比对两套环境建表脚本差异,以224环境为主 当前环境,dblink环境 中间表middle记录当前环境比224环境少的表字段,及差异字段 create tab ...
分类:
数据库 时间:
2017-09-05 16:55:02
阅读次数:
141