VMware Workstation 10.0.4.2249910.exeWorkstation10.0.4修复了微软Windows 8.1和Windows Server 2012操作系统中的内存问题。VMware-player-6.0.4-2249910.exe自10.xx Updated1.最大...
分类:
系统相关 时间:
2014-10-31 20:33:21
阅读次数:
177
损坏情况一:sqlserver出在文件xx.mdf中、偏移量为xxx 的位置执行 读取 期间,操作系统已经向 SQL Server 返回了错误 23(数据错误(循环冗余检查),请执行完整的数据库一致性检查(DBCC CHECKDB)--1、用户模式设为单用户sp_dboption 'dbname',...
分类:
数据库 时间:
2014-10-31 15:16:53
阅读次数:
129
android4.4 通过包名打开第三方应用程序
只通过包名启动第三方应用apk程序
Intent intent = new Intent();
//通过包名启动
PackageManager packageManager = getPackageManager();
intent =packageManager.getLaunchIntentForPackage(“xx.yy.zz”);
startActivity(intent);...
分类:
移动开发 时间:
2014-10-30 13:41:25
阅读次数:
188
bfs水题。
变成三维而已。定义三维变量就好.
int xx[]={0,0,0,0,-1,1};
int yy[]={0,0,-1,1,0,0};
int zz[]={-1,1,0,0,0,0};
这样就和平时做的简单宽搜没什么区别了。
#include
#include
#include
#include
#include
#include
#include
#include...
分类:
其他好文 时间:
2014-10-30 10:26:03
阅读次数:
139
一.内存对齐的初步讲解
内存对齐可以用一句话来概括:
“数据项只能存储在地址是数据项大小的整数倍的内存位置上”
例如int类型占用4个字节,地址只能在0,4,8等位置上。
例1:
#include
struct xx{
char b;
int a;
int c;
char d;
};
int main()...
在Run/Debug configuration 的你要运行行的tomcat里面的? vm options里面输入 -server -XX:PermSize=128M -XX:MaxPermSize=256m...
分类:
其他好文 时间:
2014-10-29 13:15:28
阅读次数:
241
数论拓展欧几里得,计算mx+ny=d的一组解(m,n为已知)
int xx=x+n/d*i;
int yy=y-m/d*i;//xx,yy分别为其他通解
void extend_gcd(int a,int b,int &x,int &y,int &d)
{
if(!b)
{
x=1;
y=0;
d=a; ...
分类:
其他好文 时间:
2014-10-29 13:04:53
阅读次数:
155
catalina.bat文件:set JAVA_OPTS=-server -Xms1400M -Xmx1400M -Xss512k -XX:+AggressiveOpts -XX:+UseBiasedLocking -XX:PermSize=256M -XX:MaxPermSize=512M -XX...
分类:
其他好文 时间:
2014-10-29 01:42:36
阅读次数:
199
在shell中常用的特殊符号罗列如下:# ; ;; . , / \ 'string'| ! $ ${} $? $$ $*"string"* ** ? : ^ $# $@ `command`{} [] [[]] () (()) || && {xx,yy,zz,...}~ ~+...
分类:
系统相关 时间:
2014-10-28 19:26:56
阅读次数:
274
Problem Description请你编程画一个放大的’X’。如3*3的’X’应如下所示:X X XX X5*5的’X’如下所示:X X X X X X XX XInput输入数据第一行是一个整数T,表示有T组测试数据;接下来有T行,每行有一个正奇数n(3 2 #define N 1...
分类:
其他好文 时间:
2014-10-28 01:57:01
阅读次数:
207