2014年11月9日
摘要:
笔试···#include #include #include static jmp_buf buf;void main(){ volatile int b; b=3; if(setjmp(buf)!=0) { printf("%d ",b); e...
阅读全文
posted @ 2014-11-09 20:20
1129496211
阅读(619)
推荐(0)
2014年11月3日
摘要:
1. 可重入是什么概念?可重入代码(Reentry code)也叫纯代码(Pure code)是一种允许多个进程同时访问的代码。为了使各进程所执行的代码完全相同,故不允许任何进程对其进行修改。程序在运行过程中可以被打断,并由开始处再次执行,并且在合理的范围内(多次重入,而不造成堆栈溢出等其他问题),...
阅读全文
posted @ 2014-11-03 21:14
1129496211
阅读(170)
推荐(0)
2014年10月30日
摘要:
http://blog.csdn.net/yunyun1886358/article/
http://blog.sina.com.cn/s/blog_80ce3a550100yl1r.html
阅读全文
posted @ 2014-10-30 17:59
1129496211
阅读(943)
推荐(0)
摘要:
http://blog.chinaunix.net/uid-29958512-id-4584209.html
阅读全文
posted @ 2014-10-30 16:41
1129496211
阅读(241)
推荐(0)
摘要:
1 int (*a[10]) (int)注意指针数组和数组指针的区别:int(*a[10])(int):a是这样一个数组,它有十个元素,每个元素都是一个函数指针,所指向的函数是带一个int参数返回值也是int。int(*a)[10](int):a是一个函数指针,它所指向的函数是带一个int参数,返...
阅读全文
posted @ 2014-10-30 16:09
1129496211
阅读(161)
推荐(0)
摘要:
http://bbs.dospy.com/thread-13648528-1-539-1.html
阅读全文
posted @ 2014-10-30 08:27
1129496211
阅读(1264)
推荐(0)
2014年10月23日
摘要:
http://www.cnblogs.com/archimedes/p/quick-sort-algorithm.html
阅读全文
posted @ 2014-10-23 23:09
1129496211
阅读(311)
推荐(0)
摘要:
http://www.cnblogs.com/archimedes/p/select-sort-algorithm.html
阅读全文
posted @ 2014-10-23 23:05
1129496211
阅读(273)
推荐(0)
摘要:
http://www.cnblogs.com/archimedes/p/cocktail-sort-algorithm.html
阅读全文
posted @ 2014-10-23 23:03
1129496211
阅读(381)
推荐(0)
摘要:
http://www.cnblogs.com/archimedes/p/bubble-sort-algorithm.html
阅读全文
posted @ 2014-10-23 23:00
1129496211
阅读(278)
推荐(0)