#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_
不谢
追问我是指原网址里面的.....
加多少愿意帮我注释呢,...
追答对不起,目测有200+行。我还是洗洗睡吧。。。。sorry,这很难帮到你。对不起。