C++谁能够帮我注释一下这段代码?感激不尽啊...

#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_

第1个回答  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);         //查找某辆车并返回该车所在的位子
};
*/

 不谢

追问

我是指原网址里面的.....

第2个回答  2014-07-21
那么长,又没财富。比较难。追问

加多少愿意帮我注释呢,...

追答

对不起,目测有200+行。我还是洗洗睡吧。。。。sorry,这很难帮到你。对不起。

相似回答