1. 整函数 (entire function)(1) 定义: 若 $f$ 在 $\bbC$ 上解析,
则称 $f$ 为整函数.(2) 性质: $\dps{f(z)=\sum_{n=0}^\infty c_nz^n,\ 0\leq
|z|<\infty}$.(3) 例: $f(z)=e^z,\sin...
分类:
其他好文 时间:
2014-04-30 04:37:01
阅读次数:
366
题目: Given an array of integers, find two numbers
such that they add up to a specific target number. The function twoSum should
return indices of the t...
分类:
其他好文 时间:
2014-04-30 03:20:07
阅读次数:
502
通过程序获取android系统手机的铃声和音量。同样,设置铃声和音量的方法也很简单!AudioManager am = (AudioManager)
getSystemService(Context.AUDIO_SERVICE);//通话音量 int max = am.getStreamMaxVol...
分类:
移动开发 时间:
2014-04-30 02:26:46
阅读次数:
586
题意为从每行取一瓶花,每瓶花都有自己的审美价值第 i+1 行取的花位于第 i
行的右下方求最大审美价值dp[i][j]:取到第 i 行,第 j
列时所获得的最大审美价值动态转移方程:dp[i][j]=max(dp[i-1][j-1]+a[i][j],dp[i][j-1])代码如下:#includei...
分类:
其他好文 时间:
2014-04-30 00:17:20
阅读次数:
488
一、max-height:.div-max-height{max-height:270px;_height:expression(this.scrollHeight
> 270 ? "270px" : "auto"); overflow-y:auto}二、min-height.div-min-hei...
分类:
其他好文 时间:
2014-04-29 23:37:26
阅读次数:
489
Given an arraySofnintegers, are there
elementsa,b,c, anddinSsuch thata+b+c+d= target? Find all unique quadruplets in
the array which gives the sum of ...
分类:
其他好文 时间:
2014-04-29 22:40:00
阅读次数:
438
题意:求N!中末尾0的个数 其实就是5的个数 因为2*5=10
肯定n中2的个数比5的个数多#includeusing namespace std;int main(){ int n; int t,d; int sum;
scanf("%d",&t); while(t...
分类:
其他好文 时间:
2014-04-29 21:09:41
阅读次数:
346
例1
对于两个或更多的销售员的销售点,计算其中所有销售员的总销售目标值和销售员金额。select
city,sum(QUOTA),sum(SALESREPS.SALES)from OFFICE,SALESREPSgroup by CITYhaving
count(*)>=2例2 (1) 单行in.....
分类:
数据库 时间:
2014-04-29 19:44:29
阅读次数:
505
2014-04-28
22:32题目:不用if语句或者比较运算符的情况下,实现max函数,返回两个数中更大的一个。解法:每当碰见这种无聊的“不用XXX,给我XXX”型的题目,我都默认处理的是int类型。最高位是符号位,用x
- y的符号位来判断谁大谁小。请看下面代码,条件表达式配合异或运算能满足题目...
分类:
其他好文 时间:
2014-04-29 18:10:05
阅读次数:
395
统计SQL执行时间和次数的语句:SELECT top 50qt.text AS
SQL_text ,SUM(qs.total_worker_time) AS total_cpu_time,SUM(qs.execution_count) AS
total_execution_count,SUM(qs....
分类:
数据库 时间:
2014-04-28 11:14:38
阅读次数:
640