12 2015 档案

摘要:http://blog.csdn.net/leichelle/article/details/75467751.定义 : 队列(Queue):也是运算受限的线性表。是一种先进先出(First In First Out ,简称FIFO)的线性表。队首(front) :允许进行删除的一端称为队首。队尾(... 阅读全文
posted @ 2015-12-31 09:17 chencesc 阅读(172) 评论(0) 推荐(0)
摘要:http://www.cnblogs.com/shengansong/archive/2011/10/23/2221716.htmlhttp://www.cnblogs.com/shengansong/archive/2009/12/20/1628348.html引导ubuntu 阅读全文
posted @ 2015-12-29 17:16 chencesc 阅读(192) 评论(0) 推荐(0)
该文被密码保护。
posted @ 2015-12-29 17:02 chencesc 阅读(0) 评论(0) 推荐(0)
该文被密码保护。
posted @ 2015-12-29 13:24 chencesc 阅读(0) 评论(0) 推荐(0)
该文被密码保护。
posted @ 2015-12-29 10:07 chencesc 阅读(0) 评论(0) 推荐(0)
该文被密码保护。
posted @ 2015-12-28 15:48 chencesc 阅读(0) 评论(0) 推荐(0)
该文被密码保护。
posted @ 2015-12-28 14:58 chencesc 阅读(0) 评论(0) 推荐(0)
摘要:typedef struct stack_tag{ void *stack[40]; int stack_pointer;栈顶位置} stack_t;①stack_t *stack_new(stack_t *s);创建一个栈,并初始化②void stack_release(stack_t *s);释... 阅读全文
posted @ 2015-12-28 14:40 chencesc 阅读(175) 评论(0) 推荐(0)
摘要:内核态介绍 : http://www.cnblogs.com/viviwind/archive/2012/09/22/2698450.html 4GB地址空间 : http://blog.csdn.net/zdy0_2004/article/details/42296109 两者就是特权级上的差别, 阅读全文
posted @ 2015-12-24 15:03 chencesc 阅读(886) 评论(0) 推荐(0)
摘要:http://blog.longwin.com.tw/2012/02/vim-align-text-plugin-tabular-2012/ 阅读全文
posted @ 2015-12-15 13:36 chencesc 阅读(205) 评论(0) 推荐(0)
摘要:一. svn 和 git的区别SVN是集中式版本控制系统,版本库是集中放在中央服务器的,而干活的时候,用的都是自己的电脑,所以首先要从中央服务器哪里得到最新的版本,然后干活, 干完后,需要把自己做完的活推送到中央服务器。集中式版本控制系统是必须联网才能工作,如果在局域网还可以,带宽够大,速度够快,如... 阅读全文
posted @ 2015-12-14 17:03 chencesc 阅读(154) 评论(0) 推荐(0)
摘要:相关编译选项: 1.-g 开启gdb 2.-o0,o2 o0表示不优化, 3. -funsigned-char -fdata-sections 会使compiler为每个function和data item分配独立的section,删掉未被使用的section常用命令1.l 列出代码2.c 继续3.... 阅读全文
posted @ 2015-12-14 16:02 chencesc 阅读(169) 评论(0) 推荐(0)
摘要:内存池 : http://blog.csdn.net/rabbit729/article/details/3927979内存碎片介绍 : http://blog.csdn.net/bit_x/article/details/5655278内存碎片:“碎片的内存”描述一个系统中所有不可用的空闲内存。是... 阅读全文
posted @ 2015-12-10 16:30 chencesc 阅读(204) 评论(0) 推荐(0)
摘要:1.正则表达式中的符号:http://www.cnblogs.com/yirlin/archive/2006/04/12/373222.htmlhttp://vbird.dic.ksu.edu.tw/linux_basic/0330regularex.php#lang 一.匹配[bjp]匹配集合中的... 阅读全文
posted @ 2015-12-01 12:52 chencesc 阅读(147) 评论(0) 推荐(0)