Handle onClick for our custom LinearLayout for Gallery-like HorizontalScrollViewThe post "Implement Gallery-like HorizontalScrollView" and "Implement ...
分类:
其他好文 时间:
2014-07-07 12:30:02
阅读次数:
282
题目:Implement next permutation, which rearranges numbers into the lexicographically next greater permutation of numbers.If such arrangement is not poss...
分类:
其他好文 时间:
2014-07-07 10:57:23
阅读次数:
175
#include#include#includeusing namespace std;int main(){ double a[2],b[2],c[2]; double l,m,n,p,s; cin>>a[0]>>a[1]>>b[0]>>b[1]>>c[0]>>c[1]; l=sqrt(pow(a...
分类:
其他好文 时间:
2014-07-02 19:15:50
阅读次数:
181
实现浮点类型的幂运算,函数原型为:
double pow(double x, int n)
在求解这个问题的时候是一个很挣扎的过程,因为它不是报错而是一直提示你超出时间,那么必须一次次的考虑怎样降低时间复杂度。
首先最直接的思路是下面这样的,就跟直观的数学求解一样。
double pow(double x, int n)
{
if(n==0)
return 1.0;
...
分类:
其他好文 时间:
2014-07-02 09:21:49
阅读次数:
179
ll random(ll n){ return (ll)((double)rand()/RAND_MAX*n + 0.5);}ll pow_mod(ll a,ll p,ll n){ if(p == 0) return 1; ll ans = pow_mod(a,p/2...
分类:
其他好文 时间:
2014-07-01 12:29:43
阅读次数:
218
def recursive_multiply(x, y, n): if n==1: return x*y else: a = x/pow(10, n/2) b = x-a*pow(10, n/2) c = y/pow(10, n/2) d = y-c*pow(10, n/2) ac = re...
分类:
编程语言 时间:
2014-07-01 12:20:43
阅读次数:
273
This post introduce how to implement the public or private static members in JavaScript.
分类:
编程语言 时间:
2014-07-01 12:10:42
阅读次数:
190
上次那个大数开方的高精度的题,UVa113 Power of Cryptography,直接两个double变量,然后pow(x, 1 / n)就A过去了。怎么感觉UVa上高精度的题测试数据不给力啊。。。话说回来,我写了100+行代码,WA了,后来考虑到要忽略前导0,又WA了,实在不知道哪出问题了。...
分类:
其他好文 时间:
2014-07-01 09:18:53
阅读次数:
198
题目
Given an array of integers, every element appears twice except for one. Find that single one.
Note:
Your algorithm should have a linear runtime complexity. Could you implement it witho...
分类:
其他好文 时间:
2014-07-01 06:24:42
阅读次数:
204
题目
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...
分类:
其他好文 时间:
2014-07-01 06:23:24
阅读次数:
334