商业协作和项目管理平台-TeamLab网络视频会议软件-VMukti驰骋工作流程引擎-ccflow【免费】正则表达式测试工具-Regex-TesterWindows-Phone-7-SDKExcel-读写组件-ExcelLibrary.NET集成开发环境-MonoDevelop电话软交换机-Free...
分类:
Windows程序 时间:
2014-11-18 00:11:37
阅读次数:
2775
在计算机科学中,若一个形式文法G = (N, Σ, P, S) 的产生式规则都取如下的形式:V->w,则称之为上下文无关文法(英语:context-free grammar,缩写为CFG),其中 V∈N ,w∈(N∪Σ)* 。上下文无关文法取名为“上下文无关”的原因就是因为字符 V 总可以被字串 w...
分类:
其他好文 时间:
2014-11-17 17:11:47
阅读次数:
160
#include<stdio.h>#include<malloc.h>voidf(int*q){ *q=100;// free(q);//把q指向的内存释放掉}intmain(void){ int*p=(int*)malloc(sizeof(int));//sizeof的返回值是int所占的字节数4,并将4个字节中第一个字节的地址赋值给p *p=10; printf("%d\n",*p);//结果是:1..
分类:
其他好文 时间:
2014-11-17 06:59:57
阅读次数:
129
DP。 1 #include 2 #include 3 #include 4 #include 5 #include 6 using namespace std; 7 8 #define MAXN 105 9 int score[MAXN];10 bool map[MAXN][MAXN]...
分类:
其他好文 时间:
2014-11-16 23:01:54
阅读次数:
197
又在Wikipedia上把GNU、Linux等看了一下。 GNU: The GNU Project is a free software, mass collaboration project, announced on 27 September 1983, by Richard Stall...
分类:
其他好文 时间:
2014-11-16 18:40:05
阅读次数:
232
Uva 10118 Free Candies (DP+记忆化搜索) —— black的专栏 ——waShaXiu...
分类:
其他好文 时间:
2014-11-16 17:25:33
阅读次数:
289
1 % A script for display the process of Fourier Transform of FID 2 % FID stands for Free Induction Decay,which is a signal over time domain.We 3 % ca....
分类:
其他好文 时间:
2014-11-16 17:06:44
阅读次数:
188
char* p = (char *) malloc (0);
代码也能通过编译,但事实上只分配了0个字节大小的内存空间,当你往里头存入一个整数,就会有3个字节无家可归
,结果是后面的内存中原有数据内容被改写。这样做是很危险的。
这种错误也可以自己测试出来,虽然写入动态空间,但是在释放动态空间是没法释放的,因为free函数不能释放别人的空间。...
分类:
其他好文 时间:
2014-11-16 14:47:55
阅读次数:
396
Bounding volumeFrom Wikipedia, the free encyclopediaA three-dimensional model with its bounding box drawn in dashed lines.Forbuilding codecompliance, ...
分类:
其他好文 时间:
2014-11-15 22:59:51
阅读次数:
347
1.loadaveragetopuptime2.CPU利用率top1多核CPU查看Shift+H用线程查看-p指定查看的进程top|grepCpu3.磁盘剩余空间df-h按单位格式输出du-h按单位格式输出4.网络trafficsar-nDEV11-n汇报网络状况DEV查看各个网卡网络流量n间隔秒数n总共取几次5.磁盘I/Oiostat-d-k6.内存使用free-m..
分类:
系统相关 时间:
2014-11-14 15:54:35
阅读次数:
266