摘要:
View Code #include <stdlib.h>#include <stdio.h>#include <assert.h>#define Elem inttypedef struct Node{ int elem; struct Node *next;}Node;typedef struct Quece{ Node *front; Node *rear;}Quece;Quece *initQuece(){ Quece *T=(Quece *)malloc(sizeof(Quece)); if(!T) exit(0); N... 阅读全文
posted @ 2012-06-07 10:31
蓝色守望
阅读(1354)
评论(0)
推荐(0)

浙公网安备 33010602011771号