#include
void diaoyong(int q)
{
int o,i,p;
p=q;
i=0;
while(i<p)
{
printf("* ");
i++;
}
printf("\n");
for(i=0;i<p-2;i++)
{
printf("*");
for(o=0;o<2*p-3;o++)
printf(" ");
...
分类:
其他好文 时间:
2014-08-01 19:47:52
阅读次数:
230
代码如下:Backup Log DNName with no_log '这里的DNName是你要收缩的数据库名,自己注意修改下面的数据库名,我就不再注释了。godump transaction DNName with no_log goUSE DNNameDBCC SHRINKFILE (2)Go
分类:
数据库 时间:
2014-08-01 18:57:32
阅读次数:
237
SQL2008清空删除日志:'在SQL2008中清除日志就必须在简单模式下进行,等清除动作完毕再调回到完全模式。USE [master] GO ALTER DATABASE DNName SET RECOVERY SIMPLE WITH NO_WAIT GO ALTER DATABASE DNNam...
分类:
数据库 时间:
2014-08-01 18:56:12
阅读次数:
236
效果图如下: demo下载地址:http://files.cnblogs.com/hsx514/wireframe.zip
分类:
移动开发 时间:
2014-08-01 18:29:32
阅读次数:
216
当Activity的高度不够滑动的时候,ImageView会盖掉ScrollView的OnTouchListener监听。
这个时候需要设置Activity的
@Override
public boolean dispatchTouchEvent(MotionEvent ev){
super.dispatchTouchEvent(ev);
return productG...
分类:
其他好文 时间:
2014-08-01 10:52:01
阅读次数:
266
假设有数n
以前用除二取余法 复杂度logn 不多说
有一个logv的方法 v为1的个数 复杂度比logn小
int Count(int x)
{
int ans = 0;
while(x)
{
x &= (x-1);
ans++;
}
return ans;
}
这里用到了位运算 x&(x-1)每次去掉一个1 举个例子
100010001000&(10...
分类:
其他好文 时间:
2014-07-31 20:55:27
阅读次数:
225
SimpleXML是PHP5后提供的一套简单易用的xml工具集,可以把xml转换成方便处理的对象,也可以组织生成xml数据。不过它不适用于包含namespace的xml,而且要保证xml格式完整(well-formed)。它提供了三个方法:simplexml_import_dom、simplexml...
分类:
Web程序 时间:
2014-07-31 19:49:17
阅读次数:
199
第3位的置位与清除操作。
#include
#include
#include
#define BIT3 (0x1<<3)
int
main()
{
int a = 0x00000000;
printf("a = 0x%08X\n", a);
/*
置位第3bit
a = a | (0x1<<3)
a = a | 0x8
*/
a |= BIT3;
printf("a = 0x%08X\n", a);
/*...
分类:
其他好文 时间:
2014-07-31 17:15:07
阅读次数:
386
在src下面新建file名为log4j.properties内容如下:
# Configure logging for testing: optionally with log file
log4j.rootLogger=WARN, stdout
# log4j.rootLogger=WARN, stdout, logfile
log4j.appender.stdout=org.apa...
分类:
移动开发 时间:
2014-07-31 13:33:46
阅读次数:
197
#include
sub(int *a,int n,int k)
{
if(k<=n)sub(a,n/2,2*k);
*a+=k;
}
main()
{
int x=0;
sub(&x,8,1);
printf("%d\n",x);
}...
分类:
其他好文 时间:
2014-07-31 09:52:06
阅读次数:
205