2012年3月26日
摘要: 原创作品,允许转载,转载时请务必以超链接形式标明文章原始出处、作者信息和本声明。否则将追究法律责任。http://ticktick.blog.51cto.com/823160/596179你了解 #include 某个 .h 文件后,编译器做了哪些操作么? 你清楚为什么在 .h文件中定义函数实现的话... 阅读全文
posted @ 2012-03-26 11:49 genslow 阅读(204) 评论(0) 推荐(0) 编辑
摘要: 根据数据结构书本上的为代码实现的View Code #include#include #include #define MAX_STACK_SIZE 100#define EXIT_ROW 9#define EXIT_COL 9int maze[10][10] = { {1,0,1,1... 阅读全文
posted @ 2012-03-26 00:21 genslow 阅读(199) 评论(0) 推荐(0) 编辑
摘要: 1.数制转换2.括号匹配3.表达式求值#include <stdio.h>#include <malloc.h>#include <string.h>#include <stdlib.h>#include <windows.h>#define TRUE 1#define FALSE 0#define OK 1#define ERROR 0#define INFEASIBLE -1#define OVERFLOW -2char JJ[]={"0123456789ABCDEF"};typedef struct tagW 阅读全文
posted @ 2012-03-26 00:14 genslow 阅读(305) 评论(0) 推荐(0) 编辑