首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴鱼鱼儿丸子的代码贴全部
#include<iostream.h>
#include<iomanip.h>
enum error_code{success,overflow,underflow};
typedef struct node{
    int data;
struct node *next;
}node;
class queue{
public:
    queue();
    ~queue();
    bool empty()const;
......................
阅读全部 | 2012年3月5日 04:47
1
鱼鱼儿丸子