虽然这次没加什么新东西,但是及时更新支持xe7,还算可以。What's New in 14.1.4 (VCL Product Line)New Major Features in 14.1What's New in VCL Products 14.1Feature HighlightsTo lear...
分类:
其他好文 时间:
2014-09-10 15:43:00
阅读次数:
640
SID_LIST_LISTENER = (SID_LIST = (SID_DESC = (SID_NAME = CLRExtProc) (ORACLE_HOME = D:\app\Administrator\product\11.2.0\dbhome_1) ...
分类:
其他好文 时间:
2014-09-10 14:06:20
阅读次数:
184
做Web开发时经常涉及到页面之间的转跳,页面之间的转跳就会涉及到页面之间参数的传递,通过URL传递参数是常用的方法之一,但是微软 说:"Maximum URL length is 2,083 characters in Internet Explorer",...
分类:
其他好文 时间:
2014-09-10 12:50:40
阅读次数:
219
Givennpoints on a 2D plane, find the maximum number of points that lie on the same straight line.对每个点,考察其他点与它组成的直线斜率,使用HashMap将斜率与点个数对应起来。需要注意的一点是特殊斜率...
分类:
编程语言 时间:
2014-09-10 12:25:00
阅读次数:
174
需求:gz=int(raw_input(‘请输入您收入/月:‘))
F=file(‘commodity.txt‘)
shop_list=[]
product=F.readline()
products=product.split()
products_prices=F.readline()
prices=[int(i)foriinproducts_prices.split()]
min_prices=min(prices)
whileTrue:
print‘本商店提供..
分类:
其他好文 时间:
2014-09-10 02:56:01
阅读次数:
249
下面是手机网页的一些认识initial-scale - 初始的缩放比例 minimum-scale - 允许用户缩放到的最小比例 maximum-scale - 允许用户缩放到的最大比例 user-scalable - 用户是否可以手动缩放media="(device-height: 568...
分类:
移动开发 时间:
2014-09-09 19:49:59
阅读次数:
260
[leetcode]Maximum Subarray...
分类:
其他好文 时间:
2014-09-09 12:38:08
阅读次数:
137
Given a string S, find the longest palindromic substring in S. You may assume that the maximum length of S is 1000, and there exists one unique longes...
分类:
其他好文 时间:
2014-09-09 12:14:08
阅读次数:
200
Given a binary tree, find the maximum path sum.The path may start and end at any node in the tree.For example:Given the below binary tree, 1 ...
分类:
其他好文 时间:
2014-09-09 10:44:48
阅读次数:
132
递归,dfs这里返回值是一个pair,first表示两个子树的不经过当前root的最大pathsum;second表示两个子树的,以root->left和root->right为路径起始节点的路径的最大值 1 /** 2 * Definition for binary tree 3 * stru.....
分类:
其他好文 时间:
2014-09-07 19:43:15
阅读次数:
195