上一页 1 ··· 7 8 9 10 11
  2011年7月12日
摘要: 图解linux0.1x 从上电到执行main函数的处理 阅读全文
posted @ 2011-07-12 18:03 image eye 阅读(518) 评论(0) 推荐(0) 编辑
摘要: //简单队列的实现#include <stdio.h>#include <stdlib.h>#include <string.h>#define MAXSIZE100struct queue{int elem[MAXSIZE];int front,rear;};void initqueue(struct queue **q){(*q)->front =(*q)->rear=0;}int isfull(struct queue *q){if(q->front == (q->rear+1)%MAXSIZE)return 1;elseret 阅读全文
posted @ 2011-07-12 17:31 image eye 阅读(988) 评论(0) 推荐(0) 编辑
摘要: 图示双链表的创建,添加,删除过程 阅读全文
posted @ 2011-07-12 16:54 image eye 阅读(3975) 评论(0) 推荐(2) 编辑
摘要: 图示单链表的创建,添加,删除过程 阅读全文
posted @ 2011-07-12 16:46 image eye 阅读(545) 评论(0) 推荐(1) 编辑
摘要: 图示指针的转换过程 阅读全文
posted @ 2011-07-12 16:29 image eye 阅读(760) 评论(1) 推荐(1) 编辑
上一页 1 ··· 7 8 9 10 11