C++谁能够帮我注释一下这段代码?感激不尽啊...
#include<iostream>#include<assert.h>usingnamespacestd;structCAR{intnum;inttime;};clas...
#include <iostream>
#include<assert.h>
using namespace std;
struct CAR
{
int num;
int time;
};
class Stack
{
private:
int top,maxsize;
CAR *car_part;
public:
Stack();
Stack(int size);
~Stack();
int get_len(); //获取停车场内的汽车数量
bool IsFull(); //停车场的车位是否满了
bool IsEmpty(); //停车场是否有车停放
void push(CAR *pcar); //将车停入停车场
void pop(CAR* pcar); //将车开出停车场
int get_Rlen(); //查询停车场还有几个车位
int find(CAR *pcar); //查找某辆车并返回该车所在的位子
};
///////////////////////////////////////////////////
原代码网址是
http://zhidao.baidu.com/link?url=muBrqcTFGiFaU292pju13h-PlvyWRCcw5CigMioYFRMECg0Lmd81OyaK3d0ZoouKCvKNq2nRFAN9OsXaYXo0x_ 展开
#include<assert.h>
using namespace std;
struct CAR
{
int num;
int time;
};
class Stack
{
private:
int top,maxsize;
CAR *car_part;
public:
Stack();
Stack(int size);
~Stack();
int get_len(); //获取停车场内的汽车数量
bool IsFull(); //停车场的车位是否满了
bool IsEmpty(); //停车场是否有车停放
void push(CAR *pcar); //将车停入停车场
void pop(CAR* pcar); //将车开出停车场
int get_Rlen(); //查询停车场还有几个车位
int find(CAR *pcar); //查找某辆车并返回该车所在的位子
};
///////////////////////////////////////////////////
原代码网址是
http://zhidao.baidu.com/link?url=muBrqcTFGiFaU292pju13h-PlvyWRCcw5CigMioYFRMECg0Lmd81OyaK3d0ZoouKCvKNq2nRFAN9OsXaYXo0x_ 展开
2个回答
2014-07-21
展开全部
/*
#include <iostream>
#include<assert.h>
using namespace std;
struct CAR
{
int num;
int time;
};
class Stack
{
private:
int top,maxsize;
CAR *car_part;
public:
Stack();
Stack(int size);
~Stack();
int get_len(); //获取停车场内的汽车数量
bool IsFull(); //停车场的车位是否满了
bool IsEmpty(); //停车场是否有车停放
void push(CAR *pcar); //将车停入停车场
void pop(CAR* pcar); //将车开出停车场
int get_Rlen(); //查询停车场还有几个车位
int find(CAR *pcar); //查找某辆车并返回该车所在的位子
};
*/
不谢
追问
我是指原网址里面的.....
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询