| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 647 人关注过本帖
标题:停车管理程序
只看楼主 加入收藏
谈心
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2011-9-30
结帖率:0
收藏
已结贴  问题点数:20 回复次数:3 
停车管理程序
#include<iostream>
#include<string>
#include<fstream>
#include<stack>
using namespace std;
class Car
{
private:
 string licenceplate;
 int times;
public:
 Car(string x,int y);
 string getlicence();
 int gettimes();
 void settimes();

};
string Car::getlicence()
{
 return licenceplate;
}
int Car::gettimes()
{
 return times;
}
Car::Car(string plate,int time)
{
 this->licenceplate=plate;
 this->times=time;
}
void Car::settimes()
{
 this->times++;
}

void main()
{
 //打开文件,并将数据存入数组中。
 string datas[60];
 ifstream read;
 const int maxsize=5;
 int i=0;

 read.open("data.txt");
 if(!read)
 {
  cout<<"file not open!"<<endl;
  system("pause");
  return;
 }
 for ( i=0; i<60; i++)
 {
  read>>datas[i];
 }
 read.close();
 //声明栈对象
 stack<Car*> cars;
 //循环判断是否为arrive状态
 for( i=0;i<58;i++)
 {

  if(datas[i+1]=="arrives")
  {
   //判断是否为满
   if(cars.size()==maxsize)
   {
    cout<<"Sorry PORSCHE, the lot is full!"<<endl;
    continue;
   }
   else
   {
    Car* a;
    a=new Car(datas[i],0);
    cars.push(a);
   }

  }  
  else if(datas[i+1]=="departs")
  {
   if(cars.empty()==true)
   {
    cout<<" the lot is  empty!"<<endl;
   }
   else
   {
    while((cars.top())->getlicence()!=datas[i])
    {
     cars.top()->settimes();
     cars.pop();
     if(cars.empty())
      break;
    }
    if(!cars.empty())
    {
    cars.top()->settimes();
    cout<<datas[i]<<"  was moved "<<cars.top()->gettimes()<<"  times while it was here"<<endl;
    cars.pop();
    }
   }
  }
 }
 if(cars.empty())
 {
  cout<<"stack is empty!"<<endl;
  system("pause");
  return;
 }
 cout<<cars.top()->getlicence()<<endl;
 system("pause");

}
我是编程菜鸟 ,希望高手帮我改一下这个程序,要求在挪出一辆车时,它前边的车移出后,再移入栈,。,,谢了
搜索更多相关主题的帖子: 管理程序 private include public return 
2011-09-30 20:29
jcw08120110
Rank: 8Rank: 8
来 自:南京
等 级:蝙蝠侠
帖 子:272
专家分:742
注 册:2009-6-8
收藏
得分:7 
能说一下你的程序是哪个地方达不到你的要求吗? 我没那么多时间一点一点帮你看!~

君生我未生 我生君以老
2011-10-01 15:10
书生小白
Rank: 2
等 级:论坛游民
帖 子:39
专家分:16
注 册:2011-6-14
收藏
得分:7 
是不是淮工的。。
2011-10-01 19:06
徐仁强
Rank: 2
等 级:禁止访问
帖 子:26
专家分:42
注 册:2011-9-14
收藏
得分:7 
怎么个意思?0.0!
2011-10-02 13:42
快速回复:停车管理程序
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.032024 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved