原文http://knowyouknowme.iteye.com/blog/574974一、decode在Oracle/PLSQL中,decode具有和
IF-THEN-ELSE 一样的功能。decode函数语法如下:decode( expression , search , result [, s...
分类:
数据库 时间:
2014-05-16 20:41:51
阅读次数:
540
f(Build.VERSION.SDK_INT >10) builder
=newAlertDialog.Builder(getActivity(), R.style.Theme.Sherlock.Dialog);else
builder =newAlertDialog.Builder(...
分类:
移动开发 时间:
2014-05-16 07:49:31
阅读次数:
606
第四道树题,逐渐能写递归了。虽然最后AC的代码还是看了网络,但是距离成功攻克此类问题仅一步之遥。题目:一棵树,判断是否为AVL。(AVL条件:树上任意一点的左右子树的高度差_
1 ) return false; else return isBalanced(root.lef...
分类:
其他好文 时间:
2014-05-16 04:04:41
阅读次数:
259
if (IS_IOS7()) { /* iOS7 时 Navigation 颜色 */
[[UINavigationBar appearance] setBarTintColor: HexColor(0x7bae01)]; } else { ...
分类:
其他好文 时间:
2014-05-16 03:42:25
阅读次数:
359
#!/bin/bash
#
Count=0
forUserNamein$@;do
ifid$UserName&>/dev/null;then
echo"$UserNameexists."
else
useradd$UserName
echo"Add$UserNamesuccessfully."
Count=$[$Count+1]
fi
done
echo"Add$Countnewusers."
分类:
其他好文 时间:
2014-05-15 18:52:21
阅读次数:
214
PHP生成指定大小随机图片 $image_width){ for ($i=$start;
$i<$image_height * 2; $i+=$step) { imageline($img, 0, $i, $i, 0,
$color); }}else{ for ($i=$start; $i<$im....
分类:
Web程序 时间:
2014-05-15 17:42:03
阅读次数:
377
1、if,else,elseif语法:<#ifcondition>...<#elseifcondition2>...<#elseifcondition3>......<#else>...</#if>备注:condition、condition2···必须为boolean类型,<#elseif··>、<#else>可有0或多个。实例:<#ifx==1>xis1..
分类:
其他好文 时间:
2014-05-15 12:33:22
阅读次数:
385
#include
#include
#include
#include
using namespace std;
#ifdef ONLINE_JUDGE
#define FINPUT(file) 0
#define FOUTPUT(file) 0
#else ...
分类:
其他好文 时间:
2014-05-15 06:27:05
阅读次数:
230
/*
* hdu 最小公倍数
* date 2014/5/13
* state AC
*/
#include
using namespace std;
int gcd(int x,int y)
{
while(x!=y)
{
if(x>y)x=x-y;
else y=y-x;
}
return x;
}
int main()
...
分类:
其他好文 时间:
2014-05-14 14:29:59
阅读次数:
225
辗转相除,又名欧几里德算法(Euclidean
algorithm)乃求两个正整数之最大公约数的算法。此处用函数的递归调用编写了一个小程序:int gcd(int a,int b){ if(a%b==0)
return b; else return gcd(b,a%b)...
分类:
其他好文 时间:
2014-05-14 10:20:27
阅读次数:
241