求环上的逆序对最小值,这题据说应该是用线段树去做,我先拍了一个裸的,总复杂度O(N2): 1
#include 2 #include 3 using namespace std; 4 5 #define MAXN 5000 6 7 int N; 8
int A[MAXN], sorte...
分类:
其他好文 时间:
2014-06-06 13:13:01
阅读次数:
200
Given a binary tree containing digits
from0-9only, each root-to-leaf path could represent a number.An example is the
root-to-leaf path1->2->3which rep...
分类:
其他好文 时间:
2014-06-06 12:38:42
阅读次数:
255
Cookie Version in
J2EE原文章:http://villadora.me/2014/05/06/cookie-version/在处理Cookie的时候发现不能处理servlet
request中不能获取cookie中的带”:”字符的值.Cookie[] cookies = requ...
分类:
其他好文 时间:
2014-06-06 10:36:15
阅读次数:
174
原题地址:https://oj.leetcode.com/problems/distinct-subsequences/题意:Given
a stringSand a stringT, count the number of distinct subsequences ofTinS.A
subseq...
分类:
编程语言 时间:
2014-06-06 09:59:43
阅读次数:
330
问题: 37.5*5.5=206.08 (JS算出来是这样的一个结果,我四舍五入取两位小数)
我先怀疑是四舍五入的问题,就直接用JS算了一个结果为:206.08499999999998 怎么会这样,两个只有一位小数的数字相乘,怎么可能多出这么小数点出来。
我Google了一下,发现原来这是J...
分类:
Web程序 时间:
2014-06-06 09:04:57
阅读次数:
424
Given a linked list, reverse the nodes of a
linked list k at a time and return its modified list. If the number of nodes is
not a multiple of k then l...
分类:
其他好文 时间:
2014-06-05 22:13:19
阅读次数:
391
一、创测试表-- Create tablecreate table
J_STOCK_MONTH( CLASS3 VARCHAR2(12) not null, AMOUNT NUMBER(12) not null,
CREATE_TIME DATE not null, CR...
分类:
数据库 时间:
2014-06-05 22:12:41
阅读次数:
559
最近公司一SSRS报表需求改变,同比店铺的选取为连续28天有销售的店铺,思考良久,发现可以利用ROW_NUMBER() OVER(PARTITION BY
COLUMN01 ORDER BY COLUMN02)来实现,ROW_NUMBER()从1开始,按照COLUMN01分组以及COLUMN02排序...
分类:
数据库 时间:
2014-06-05 20:55:28
阅读次数:
451
##1.
查看android当前版本号在build/core/version_defaults.mk文件中查看PLATFORM_VERSION即可; grep
PLATFORM_VERSION build/core/version_defaults.mk##2. 查看android分支版本号 ...
分类:
移动开发 时间:
2014-06-05 19:49:14
阅读次数:
292
原文如下:Visual Studio "14" CTPToday, we are making
available afirst community technology previewof the next version of Visual
Studio, codenamed Visual St...
分类:
其他好文 时间:
2014-06-05 18:11:37
阅读次数:
351