1、团队成员简介 左边:马腾跃 右边:陈谋 左上:李剑锋 左下:仉伯龙 右:卢惠明团队成员及博客: 李剑锋: Blog: http://www.cnblogs.com/Power-Byte/ 陈谋: Blog:http://www.cnblogs.com/...
分类:
其他好文 时间:
2016-01-10 16:55:18
阅读次数:
185
1、团队成员简介 左边:马腾跃 右边:陈谋 左上:李剑锋 左下:仉伯龙 右:卢惠明团队成员及博客: 李剑锋: Blog: http://www.cnblogs.com/Power-Byte/ 陈谋: Blog:http://www.cnblogs.com/...
分类:
其他好文 时间:
2016-01-10 15:39:56
阅读次数:
227
团队成员简介: 左边:马腾跃 右边:陈谋 左上:李剑锋 左下:仉伯龙 右:卢惠明团队成员及博客: 李剑锋: Blog: http://www.cnblogs.com/Power-Byte/ 陈谋: Blog: http://www.cnblogs.com/...
分类:
其他好文 时间:
2016-01-10 14:14:50
阅读次数:
133
团队成员简介: 左边:马腾跃 右边:陈谋 左上:李剑锋 左下:仉伯龙 右:卢惠明团队成员及博客: 李剑锋: Blog: http://www.cnblogs.com/Power-Byte/ 陈谋: Blog:http://www.cnblogs.com/1...
分类:
其他好文 时间:
2016-01-10 14:13:29
阅读次数:
184
Given an integer, write a function to determine if it is a power of three.Follow up:Could you do it without using any loop / recursion?Recursion:1 pub...
分类:
其他好文 时间:
2016-01-09 06:20:53
阅读次数:
403
原题链接在这里:https://leetcode.com/problems/power-of-three/与Power of Two类似。检查能否被3整除,然后整除,再重复检查结果。Time Complexity: O(logn). n是原始数字。Space: O(1).AC Java: 1 pub...
分类:
其他好文 时间:
2016-01-08 23:40:30
阅读次数:
213
given an integer,write a function to determine if it is a power of three.class Solution {public: bool isPowerOfThree(int n) { if(n<1) return...
分类:
其他好文 时间:
2016-01-08 20:06:05
阅读次数:
153
以下是详细分析:1、select power(10,3)得到1000(即:10的3次方)2、select cast(1000+33 as varchar) 将1000转换类型(即:将int转化成varchar类型)3、select right(100033,3) 从右边取3个字符得到033将1格式化...
分类:
数据库 时间:
2016-01-07 16:35:36
阅读次数:
286
------------------日期转化成年月日时分秒毫秒---------------select 'R'+CONVERT(varchar(100), GETDATE(), 112)+right(cast(power(10,2) as varchar)+DATEPART(hour, GETDA...
分类:
数据库 时间:
2016-01-07 16:10:06
阅读次数:
368
Clicks: 898 Date: 2014-09-24 15:47:48 Power By 李轩Lane Tag哈希hash加密 一、我是新手我怕谁 新手程序猿通常会直接存储明文密码在数据库中,好一点的会使用MD5来加密密码后存储md5(password),再好一点的会sha1加密密码后...
分类:
其他好文 时间:
2016-01-07 11:48:53
阅读次数:
140