摘要: It is the first to go out with my classments. we get on the bus,and after half an hour,we reach the destination.I feel excited.The building is so beautiful.and xiaoZhe say it is just city.We laugh.Lives are full of fun.We need to feel the air and into the feeling. urban or village,is the key?we sho. 阅读全文
posted @ 2013-04-20 21:01 xshang 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 问题:今天累了,没心情写,但我知道路漫漫,还是要坚持,要进步。顺序队列比较简单,明白原理就行。注:判断队列为空的条件:squeue->front==squeue->rear;代码:#include <iostream>#include <cstdlib>using namespace std;#define MAXSIZE 20typedef struct SQueue{ int data[MAXSIZE]; int front; int rear;}*SeqQueue;void initSeqQueue(SeqQueue &squeue) //初始 阅读全文
posted @ 2013-04-20 20:30 xshang 阅读(321) 评论(0) 推荐(0) 编辑