+ (NSString *)bankNumber:(NSString *)number{ if (number == nil) { return nil; } NSString *str = @"****"; NSString *starStrNumber = [number su...
分类:
其他好文 时间:
2015-07-30 12:59:39
阅读次数:
180
题目如下:
Given two sets of integers, the similarity of the sets is defined to be Nc/Nt*100%, where Nc is the number of distinct common numbers shared by the two sets,
and Nt is the total number of...
分类:
其他好文 时间:
2015-07-30 11:29:25
阅读次数:
83
原创作品,出自 “深蓝的blog” 博客,深蓝的blog:
背景
近日有哥们问我如何实现多条数据以单条的方式插入到目标表里,为解决这个问题,下面来做个小实验。
交流过程如下:
下面,我们举例用cursor来完成这个目标。
(1)、实验准备
首先,建立一个实验表,如下:
createtable EMP
(
empno NUMBER(4)
notnull,
...
分类:
数据库 时间:
2015-07-30 11:24:52
阅读次数:
171
/*
v_date 'yyyy-mm-dd'格式的日期字符串
v_begin 随机日期的相对最小值,单位为天,默认0
v_end 随机日期的相对最大值,单位为天,默认1
*/
create or replace function r_time (v_date in varchar2, v_begin in number := 0, v_end in number := 1) return da...
分类:
数据库 时间:
2015-07-30 11:21:02
阅读次数:
248
原文链接——http://blog.csdn.net/qq525099302/article/details/47146393
为什么要使用函数来获取序列值请看这里-- 创建获取序列下一个值的函数
create or replace function get_seq_next (seq_name in varchar2) return number
is
seq_val number ;
be...
分类:
数据库 时间:
2015-07-30 11:16:33
阅读次数:
161
Java泛型中的标记符含义:E- Element (在集合中使用,因为集合中存放的是元素)T- Type(Java 类)K- Key(键)V- Value(值)N- Number(数值类型)?- 表示不确定的java类型S、U、V- 2nd、3rd、4th typesObject跟这些标记符代表的j...
分类:
编程语言 时间:
2015-07-30 11:01:58
阅读次数:
152
题目:Given an array of integers, every element appearsthreetimes except for one. Find that single one.解法一:O(n*n)时间复杂度。编译一下,果然没通过。程序如下:不过我觉得本算法最简单,而且通用性是...
分类:
其他好文 时间:
2015-07-30 01:57:07
阅读次数:
115
Given an array of integers, every element appears three times except for one. Find that single one.
Note:
Your algorithm should have a linear runtime complexity. Could you implement it without using...
分类:
其他好文 时间:
2015-07-30 00:55:12
阅读次数:
139
无标题文档
//javascript内部类,Number类
var num=new Number(12.3456);
document.write(num.toFixed(2));
document.write(""+Number.MIN_VALUE);
//javascript内部类,Math类
var ma=90.1;
//向下取整
document.write(""+...
分类:
编程语言 时间:
2015-07-30 00:52:19
阅读次数:
162
华电北风吹
天津大学认知计算与应用重点实验室
完成日期:2015/7/29Double-base palindromes
Problem 36
The decimal number, 585 = 10010010012 (binary), is palindromic in both bases.Find the sum of all numbers, less than one milli...
分类:
其他好文 时间:
2015-07-30 00:50:29
阅读次数:
139