描述:不使用 * / % 完成除法操作。O(n)复杂度会超时,需要O(lg(n))复杂度。代码: 1 class Solution: 2 # @return an integer 3 def dividePositive(self, dividend, divisor): 4 ...
分类:
其他好文 时间:
2014-07-16 19:18:00
阅读次数:
298
create or replace function func_chinese(p_str in varchar2, -- 输入的字符串p_code in varchar2, -- dump(字符串)p_chinese in pls_integer -- 1, 提取汉字, 非1, 提取非汉字) r....
分类:
数据库 时间:
2014-07-16 19:13:11
阅读次数:
377
Given a roman numeral, convert it to an integer.Input is guaranteed to be within the range from 1 to 3999.下面是百度得到的关于罗马数的解释:我的代码: 1 class Solution { 2 ...
分类:
其他好文 时间:
2014-07-16 18:00:22
阅读次数:
214
Shoemaker's Problem
Shoemaker has N jobs (orders from customers) which he must make. Shoemaker can work on only one job in each day. For each ith job, it is known the integer Ti (1i<=1000...
分类:
其他好文 时间:
2014-07-16 17:12:33
阅读次数:
274
时间 :2014-7-11 11:38 调试iHealthGateway和云通信时发现问题(时间戳TS)问题:Linux编译时候定义了一个unint64_t = 1405043216129 (64位unsigned long long int 取值范围之内) 但编译的时候总是出现warnin...
分类:
其他好文 时间:
2014-07-16 15:37:18
阅读次数:
245
程序中用到一个大整数。存储在 MySQL 数据库那边用了 bigint 类型,程序运算过程中就有了点麻烦。integer用不了,只能用 __int64 这个数据类型。麻烦一,从数据表取数据。以前在数据表取回整形数据时用的都是Query->FieldByName("data")->AsInteger这...
分类:
编程语言 时间:
2014-07-16 15:35:52
阅读次数:
230
[LeetCode]Integer to Roman...
分类:
其他好文 时间:
2014-07-16 11:32:12
阅读次数:
182
public class ArrayRemoveValue { public static void main(String[] args) { Integer[] _IntArray = new Integer[]{1,2,3,4,5,6,7,9,0}; /** * 由于Arrays.as...
分类:
编程语言 时间:
2014-07-16 00:27:57
阅读次数:
400
QueryPerformanceFrequency用法
精确获取时间:
QueryPerformanceFrequency()-基本介绍
类型:Win32API
原型:BOOLQueryPerformanceFrequency(LARGE_INTEGER*lpFrequency);
作用:返回硬件支持的高精度计数器的频率。
返回值:非零,硬件支持高精度计数器;零,硬件不支..
分类:
编程语言 时间:
2014-07-15 11:36:40
阅读次数:
220
public static void main(String[] args) { Integer a1 = 1; Integer a2 = 1; Integer b1 = 127; Integer b2 = 127; Integer c1 = 128; Integ...
分类:
其他好文 时间:
2014-07-14 17:48:02
阅读次数:
201