author:skatetime:2011-02-14oracle的number的浅析从例如以下几个方面来认识number 1.表示的数值范围 2.占用的存储空间 3.number的性能我们日常主要定义数值存储列是大都是用number,只是oracle也兼容一些以他类型,例如以下:NUMERIC(p...
分类:
数据库 时间:
2015-03-04 18:40:46
阅读次数:
218
Follow up for N-Queens problem.Now, instead outputting board configurations, return the total number of distinct solutions.思路:和 N-queens 一样,不过只统计个数而言,...
分类:
其他好文 时间:
2015-03-04 18:30:44
阅读次数:
158
Given an array S of n integers, find three integers in S such that the sum is closest to a given number, target. Return the sum of the three integers. You may assume that each input
would have exact...
分类:
其他好文 时间:
2015-03-04 17:08:53
阅读次数:
138
题目Given a binary tree, find its maximum depth.The maximum depth is the number of nodes along the longest path from the root node down to the farthest leaf node.代码/**
* Definition for binary tree
* p...
分类:
其他好文 时间:
2015-03-04 17:08:21
阅读次数:
118
[LeetCode] 017. Letter Combinations of a Phone Number (Medium) (C++/Java/Python)...
分类:
编程语言 时间:
2015-03-04 17:02:45
阅读次数:
230
/** * 判断年份是否为润年 * * @param {Number} year */function isLeapYear(year) { return (year % 400 == 0) || (year % 4 == 0 && year % 100 != 0);}/** * 获取某一年份...
分类:
Web程序 时间:
2015-03-04 16:49:55
阅读次数:
129
基于zepto.js的模仿手机QQ空间的大图查看组件ImageView.js调用方式 :ImageView(index,imgData) --index参数 为图片默认显示的索引值,类型 为Number --imaData参数 为图片url数组 ,类型为Array使用之前要先引入 zepto.js ...
分类:
移动开发 时间:
2015-03-04 16:37:24
阅读次数:
207
1 /** 2 * 判断年份是否为润年 3 * 4 * @param {Number} year 5 */ 6 function isLeapYear(year) { 7 return (year % 400 == 0) || (year % 4 == 0 && year % 10...
分类:
Web程序 时间:
2015-03-04 16:20:36
阅读次数:
136
Letter Combinations of a Phone NumberGiven a digit string, return all possible letter combinations that the number could represent.A mapping of digit ...
分类:
其他好文 时间:
2015-03-04 16:17:59
阅读次数:
141
Excel Sheet Column Number问题:Given a column title as appear in an Excel sheet, return its corresponding column number.思路: 进制转换方法我的代码:public class Solu....
分类:
其他好文 时间:
2015-03-04 15:59:33
阅读次数:
139