在java中extends用于继承父类,只要父类不是声明为final或者为abstract类就可以,但是java不支持多重继承。可以使用接口实现多重继承implements,继承只能继承一个类,但implements可以实现多个接口,用逗号分开就行了比如class A extends B imple...
分类:
编程语言 时间:
2014-07-09 21:11:46
阅读次数:
290
android用mediarecord录制视屏,可以设置视屏格式,大小,还有拍摄前预览,倒计时功能要自己用hander做。 1,CameraPreview.java//预览classpublic class CameraPreview extends SurfaceView implement...
分类:
移动开发 时间:
2014-07-08 23:57:11
阅读次数:
494
Design and implement a data structure for Least Recently Used (LRU) cache. It should support the following operations: get and set.
分类:
其他好文 时间:
2014-07-08 22:54:28
阅读次数:
287
1 #include 2 #include 3 #include 4 using namespace std; 5 double a3,a2,a1,a0; 6 double f(double x){ 7 return a3*pow(x,3)+a2*pow(x,2)+a1*x+a0; 8 }...
分类:
其他好文 时间:
2014-07-07 09:15:47
阅读次数:
239
00使用递归编写一个power()函数模拟内建函数pow(),即power(x, y)为计算并返回x的y次幂的值。def power(x,y): if y == 1: return x else: return x * power(x,y-1)number1 ...
分类:
其他好文 时间:
2014-07-06 17:55:37
阅读次数:
334
Since I mainly use Java, this problem seems meaning less for me to implement it with Java. Just use StringBuilder to append each character in string f...
分类:
其他好文 时间:
2014-07-06 13:33:34
阅读次数:
296
UVA 10831 - Gerg's Cake
题目链接
题意:说白了就是给定a, p,问有没有存在x^2 % p = a的解
思路:求出勒让德标记,判断如果大于等于0,就是有解,小于0无解
代码:
#include
#include
long long a, p;
long long pow_mod(long long x, long long k, lon...
分类:
其他好文 时间:
2014-07-06 11:38:05
阅读次数:
144
iOS开发中常用的数学函数 /*---- 常用数学公式 ----*/ //指数运算 3^2 3^3 NSLog(@"结果 %.f", pow(3,2)); //result 9 NSLog(@"结果 %.f", pow(3,3)); ...
分类:
移动开发 时间:
2014-07-05 22:01:45
阅读次数:
390
题目链接:uva 10710 - Chinese Shuffle
题目大意:给出n张牌,按照顺序排列好,进行n-1次完美洗牌,问是否可以变成原来德序列。
解题思路:根据完美洗牌的性质,于是第x张牌经过p次后德位置有x?2p,于是只需要证明第1张牌最后是否在远处即可。
#include
#include
typedef long long ll;
ll pow_mod(ll a...
分类:
其他好文 时间:
2014-07-04 07:45:10
阅读次数:
350
1 #include 2 #include 3 using namespace std; 4 int main(){ 5 int i,j,n,p[10],q,sum; 6 cin>>n; 7 for(i=0;i<=9;++i){ 8 p[i]=pow(i,n...
分类:
其他好文 时间:
2014-07-03 21:39:20
阅读次数:
210