Page 2 Line 1, "reads" should be "read".Page 2 Line 5, "are initial velocity and initial magnetic field" should be"are initial velocity and initial ma...
分类:
其他好文 时间:
2014-07-31 16:47:06
阅读次数:
217
筛选素数方法小结: 最简单的筛素数法方法就是从2开始,将所以2的倍数去掉,然后从3开始,将3的倍数去掉,依次进行下去即可。根据这样很容易写出代码,下面代码就是是筛素数法得到100以内的素数并保存到primes[]数组中。 1 const int MAXN = 100; 2 bool flag[MA....
分类:
其他好文 时间:
2014-07-31 16:36:37
阅读次数:
223
事件框架处理流程
每个worker子进程都在ngx_worker_process_cycle方法中循环处理事件,处理分发事件则在ngx_worker_process_cycle方法中调用ngx_process_events_and_timers方法,循环调用该方法就是 在处理所有事件,这正是事件驱动机制的核心。该方法既会处理普通的网络事件,也会处理定时器事件。
ngx_pro...
分类:
其他好文 时间:
2014-07-31 13:31:36
阅读次数:
275
using System; using System.Collections.Generic; using System.Linq; using System.Text;namespace ConsoleApplication1 { class Program { static void Ma...
分类:
其他好文 时间:
2014-07-31 09:46:35
阅读次数:
233
上一章既然说到了调试循环事件,那么接下来我们该说说对调试器事件的处理了. 调试器的事件处理虽然有很多,但是并不是每一个都用得上的,接下来的文章中我们挑选一些经常用到的来给大家说说.CREATE_PROCESS_DEBUG_EVENT 创建进程之后的第一个调试事件,CREATE_PROCESS_DEB...
分类:
其他好文 时间:
2014-07-31 09:33:16
阅读次数:
299
to be added...gdb a.out[Inferior 1 (process 9718) exited with code 05](gdb) listLine number 15 out of range; t.c has 14 lines.(gdb) list 11 #include2 ...
分类:
数据库 时间:
2014-07-30 23:33:25
阅读次数:
352
TCP Socket Establish;UDP Send Package Process In Kernel Sourcecode Learning
分类:
其他好文 时间:
2014-07-30 12:02:23
阅读次数:
327
intcount=0;//定义数组长度printf("请输入数组长度:");scanf("%d",&count);int*p=malloc(sizeof(int)*count);for(inti=0;i<count;i++){*(p+i)=arc4random()%(count-1+1)+1;printf("%d",*(p+i));}printf("\n");intmax=0;for(inti=0;i<count;i++){if(max<*(p+i)){ma..
分类:
其他好文 时间:
2014-07-30 03:30:33
阅读次数:
202
1: 杀死自己进程的方法android.os.Process.killProcess(Process.myPid());2:杀死别人进程的方法(不能杀死自己)-------a:activityManager.killBackgroundProcessesActivityManager activit...
分类:
移动开发 时间:
2014-07-30 00:40:32
阅读次数:
279
#include
#include
#include
#include
#include
using namespace std;
struct node{
int x,y,z,step;
};
int ma[51][51][51];
int A,B,C,T;
int mv[6][3] = {{1,0,0},{0,1,0},{0,0,1},{-1,0,0},{0,-1,0},{0...
分类:
其他好文 时间:
2014-07-29 21:57:42
阅读次数:
394