How strong are you?你有多强大?That is a tough question to answer, whether you are a man or a woman.不管你是男人还是女人,这都是个很难回答的问题。But, really, I want to ask… how d ...
分类:
其他好文 时间:
2017-11-06 15:32:30
阅读次数:
212
我们知道oarcle数据库真正存放数据的是数据文件(data files),Oarcle表空间(tablespaces)实际上是一个逻辑的概念,他在物理上是并不存在的,那么把一组data files 捻在一起就成为一个表空间。 表空间属性: 一个数据库可以包含多个表空间,一个表空间只能属于一个数据库 ...
分类:
数据库 时间:
2017-10-26 13:25:17
阅读次数:
209
Given an integer array and an element x, find if element is present in array or not. If element is present, then print index of its first occurrence. ...
分类:
其他好文 时间:
2017-10-18 21:41:02
阅读次数:
141
Given an integer N, the task is to find out the count of numbers M that satisfy the condition M + sum(M) + sum (sum(M)) = N, where sum(M) denotes the ...
分类:
其他好文 时间:
2017-10-17 17:28:46
阅读次数:
227
Given an array of n elements.Find the maximum sum when the array elements will be arranged in such way. Multiply the elements of each pair and add to ...
分类:
其他好文 时间:
2017-10-16 16:55:28
阅读次数:
110
[self.speakerButton mas_remakeConstraints:^(MASConstraintMaker *make) { make.left.equalTo(self.authorSepLineView.mas_right).offset(5); make.centerY.eq... ...
分类:
移动开发 时间:
2017-10-09 17:41:28
阅读次数:
284
http://acm.hdu.edu.cn/showproblem.php?pid=4496 D-City Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65535/65535 K (Java/Others)Total Submission ...
分类:
其他好文 时间:
2017-09-29 21:21:41
阅读次数:
243
圆角一直是开发中经常遇到的问题。 为了实现部分圆角的效果,我去查了一下用 OC 如何实现。 可惜直接语法转换以后是不能用的,因为 mas_maskContraints (是 Masonry 这个库的语法,感谢isaced)方法在 Swift 中我并没有找到。在 Stack Overflow 中的搜索 ...
分类:
编程语言 时间:
2017-09-23 16:20:09
阅读次数:
333
旧项目中的数据库约束名称不规范,写了个脚本重新修改。 1. 名称重新修改为已有的默认值约束的名称为'DF_' + 表名 + 字段名; 2. 没有设置默认值约束的列设置默认值,字符串为空,数值为0; 3. 时间字段除了addtime不加默认值; ...
分类:
其他好文 时间:
2017-09-18 19:41:20
阅读次数:
158
Binary trees are defined recursively. A binary tree T is a structure defined on a finite set of nodes that either contains no nodes, or is composed of ...
分类:
其他好文 时间:
2017-09-16 17:21:08
阅读次数:
225