自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

瓦釜苑

——陵谷崔嵬 雷鸣瓦釜

  • 博客(12)
  • 资源 (6)
  • 收藏
  • 关注

原创 C语言格式化输出与输入

C语言格式化输出和输入

2015-10-22 11:24:25 522

原创 算法时间复杂度

算法时间复杂度....

2015-10-16 15:40:36 513

转载 当今世界十大经典算法

十大经典算法,霍夫曼编码、快速排序。。。

2015-10-16 15:36:22 1061

原创 C语言经典面试题

C语言经典面试题....

2015-10-16 15:35:31 77876 8

原创 二叉树经典面试题

二叉树面试题......

2015-10-14 09:55:52 796

原创 单链表经典面试题

链表面试题

2015-10-13 21:57:06 548

原创 数据结构(第5章: 图)

图...

2015-10-13 12:59:17 451

原创 数据结构(第4章: 树和二叉树)

创建二叉树、先序遍历 、中序遍历、后序遍历、层序遍历二叉树

2015-10-13 12:58:43 540

原创 数据结构(第3章: 栈和队列)

栈和队列...

2015-10-13 12:57:41 390

原创 C语言字符串

字符串函数,atoi函数

2015-10-13 12:32:39 415

原创 软件工程

软件工程是一门工程学科。。。

2015-10-09 15:40:08 496

原创 Makefile 学习笔记(三)实例

1迷宫问题的工程实例       该工程包含三个头文件main.h、stack.h、maze.h,和三个源文件main.c、stack.c、maze.c。/*头文件main.h*/#ifndef MAIN_H#define MAIN_Htypedef struct point {int row, col;}item_t;#define MAX_ROW

2015-10-01 22:26:29 383

libev-4.15.tar.gz

libev-4.15 源码 libev是一个开源的事件驱动库,基于epoll,kqueue等OS提供的基础设施。其以高效出名,它可以将IO事件,定时器,和信号统一起来,统一放在事件处理这一套框架下处理。基于Reactor模式,效率较高,并且代码精简(4.15版本8000多行),是学习事件驱动编程的很好的资源。

2016-12-22

Posix多线程程序设计源码

Posix多线程程序设计书中实例源码。 头文件errors.h #ifndef __errors_h #define __errors_h #include #include #include #include #include /* * Define a macro that can be used for diagnostic output from * examples. When compiled -DDEBUG, it results in calling printf * with the specified argument list. When DEBUG is not defined, it * expands to nothing. */ #ifdef DEBUG # define DPRINTF(arg) printf arg #else # define DPRINTF(arg) #endif /* * NOTE: the "do {" ... "} while (0);" bracketing around the macros * allows the err_abort and errno_abort macros to be used as if they * were function calls, even in contexts where a trailing ";" would * generate a null statement. For example, * * if (status != 0) * err_abort (status, "message"); * else * return status; * * will not compile if err_abort is a macro ending with "}", because * C does not expect a ";" to follow the "}". Because C does expect * a ";" following the ")" in the do...while construct, err_abort and * errno_abort can be used as if they were function calls. */ #define err_abort(code,text) do { \ fprintf (stderr, "%s at \"%s\":%d: %s\n", \ text, __FILE__, __LINE__, strerror (code)); \ abort (); \ } while (0) #define errno_abort(text) do { \ fprintf (stderr, "%s at \"%s\":%d: %s\n", \ text, __FILE__, __LINE__, strerror (errno)); \ abort (); \ } while (0) #endif

2015-10-10

C程序设计语言(K&R)书上范例代码

从《C程序设计语言 K&R》一书中摘抄的范例代码

2014-08-02

Intel 64 and IA-32体系结构:软件开发人员手册

Intel 64 and IA-32体系结构:软件开发人员手册 英文版1-3册

2014-07-28

APUE头文件与error文件

UNIX环境高级编程配套头文件与error.c文件

2014-07-26

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除