博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ccf-20171203 Crontab问题
阅读量:6236 次
发布时间:2019-06-22

本文共 4135 字,大约阅读时间需要 13 分钟。

这题有如下几个点要注意:

1.最开始输出的开始时间和截止时间,这里是不包含截止时间的。

2.月份和星期的英文表示是大小写任意的,并未规定必须是Sat这种形式。

3.星期天的数字标识是0。

我的思路是,首先将月份、天数、小时、分钟、星期统统规格化,格式如下:

月份:规格化前:1,2-4

   规格化后:1 2 3 4

再使用stringstream类来依次遍历规格化的字符串。在遍历月份的过程中,要考察天数与月份是否匹配,同时判定是否满足星期的要求。

最后判定结果是否在小于截止时间,并且大于等于起始时间。

题目和代码如下:

#include 
/*#include
#include
#include
#include
#include
#include
#include
*/using namespace std;class Time{ public: int year,month,day,hour,minute; Time(int year_,int month_,int day_,int hour_,int minute_):year(year_),month(month_),day(day_),hour(hour_),minute(minute_){ } void ShowTime(){ cout<
<<","<
<<","<
<<","<
<<","<
<
> mmps; int n; string s,t; cin>>n>>s>>t; Time * Total[2]; Total[0]=new Time(atoi(s.substr(0,4).c_str()),atoi(s.substr(4,2).c_str()),atoi(s.substr(6,2).c_str()),atoi(s.substr(8,2).c_str()),atoi(s.substr(10,2).c_str())); Total[1]=new Time(atoi(t.substr(0,4).c_str()),atoi(t.substr(4,2).c_str()),atoi(t.substr(6,2).c_str()),atoi(t.substr(8,2).c_str()),atoi(t.substr(10,2).c_str())); Event * event[n]; for(int i1=0;i1
>temp_min>>temp_hou>>temp_dayofmonth>>temp_mon>>temp_dayofweek>>command; //event[i]=new Event(temp_min,temp_hou,temp_dayofmonth,temp_mon,temp_dayofweek,command); string result=""; toStandard(temp_mon);//不区别大小写,转化为标准小写 map
months; months["jan"]=1,months["feb"]=2,months["mar"]=3,months["apr"]=4,months["may"]=5,months["jun"]=6,months["jul"]=7,months["aug"]=8,months["sep"]=9,months["oct"]=10,months["nov"]=11,months["dec"]=12; map
::iterator it; for(it=months.begin();it!=months.end();it++){ if(temp_mon.find(it->first)!=string::npos){ temp_mon.replace(temp_mon.find(it->first),3,Int_to_String(it->second)); } } if(temp_mon=="*"){ temp_mon=""; for(int ii=1;ii<=12;ii++){ temp_mon+=Int_to_String(ii); temp_mon+=" "; } //cout<
<
weeks; weeks["sun"]=0,weeks["mon"]=1,weeks["tue"]=2,weeks["wed"]=3,weeks["thu"]=4,weeks["fri"]=5,weeks["sat"]=6; //map
::iterator it; for(it=weeks.begin();it!=weeks.end();it++){ if(temp_dayofweek.find(it->first)!=string::npos){ temp_dayofweek.replace(temp_dayofweek.find(it->first),3,Int_to_String(it->second)); } } if(temp_dayofweek.find(",")!=string::npos||temp_dayofweek.find("-")!=string::npos){ string tts=Operator_special(temp_dayofweek); temp_dayofweek=tts; } if(temp_hou=="*"){ temp_hou=""; for(int ii=0;ii<=23;ii++){ temp_hou+=Int_to_String(ii); temp_hou+=" "; } //cout<
<
year;i<=Total[1]->year;i++){ int total_day0=0; for(int ii=1970;ii
>temps1){ istringstream inputString2(temp_dayofmonth); while(inputString2>>temps2){ int day_li=0; if(atoi(temps1.c_str())==2){ if(i%400==0||(i%4==0&&i%100!=0)){ day_li=29; }else{ day_li=28; } }else if((atoi(temps1.c_str())==1)||(atoi(temps1.c_str())==3)||(atoi(temps1.c_str())==5)||(atoi(temps1.c_str())==7)||(atoi(temps1.c_str())==8)||(atoi(temps1.c_str())==10)||(atoi(temps1.c_str())==12)){ day_li=31; }else{ day_li=30; } /* if(atoi(temps2.c_str())==31){ cout<<"here"<
day_li){ continue; } int total_day=total_day0; if(temp_dayofweek!="*"){ int ii=atoi(temps1.c_str()); int num2=28; if(i%400==0||(i%4==0&&i%100!=0)){ num2++; } switch(ii){ case 12:total_day+=30; case 11:total_day+=31; case 10:total_day+=30; case 9:total_day+=31; case 8:total_day+=31; case 7:total_day+=30; case 6:total_day+=31; case 5:total_day+=30; case 4:total_day+=31; case 3:total_day+=num2; case 2:total_day+=31; case 1:break; } total_day+=atoi(temps2.c_str()); total_day-=1; int week=(total_day%7+4)%7; /*if(command=="go_to_bed"&&(i==2018)){ cout<<"total_day:"<
<
>temps3){ istringstream inputString4(temp_min); while(inputString4>>temps4){ temps1=temps1.length()==1?(temps1="0"+temps1):temps1; temps2=temps2.length()==1?(temps2="0"+temps2):temps2; temps3=temps3.length()==1?(temps3="0"+temps3):temps3; temps4=temps4.length()==1?(temps4="0"+temps4):temps4; result=Int_to_String(i)+temps1+temps2+temps3+temps4; if(result>=s&&result
>::iterator it=mmps.begin();it!=mmps.end();++it) { map
isprt; for(size_t i=0;i
second.size();++i) { string dis=it->first+" "+it->second[i]; if(isprt.count(dis)==0) { cout<
<

  

转载于:https://www.cnblogs.com/JsonZhangAA/p/8511205.html

你可能感兴趣的文章
Social Engineering - 社会工程学
查看>>
spring boot框架学习3-spring boot核心(2)
查看>>
TB级(小白到大牛之路)技术视频资源福利大放送
查看>>
简明教程:只需三步成功“硬刷”BIOS为SLIC 2.1完美激活Windows 7 / Vista / XP三大系统...
查看>>
收藏 | 全球大数据7大阵营,你都知道吗?
查看>>
图-一点点到其他点的最短距离
查看>>
线程条件变量pthread_cond_t (Ubuntu 12.04)
查看>>
配置Oracle EM dbcontrol
查看>>
MyISAM和InnoDB性能测试
查看>>
CentOS 系统基本配置
查看>>
帧中继实验
查看>>
Java编写(模仿51CTO 给图片加上水印)--原创
查看>>
CSS截取字段,让过长的字段结尾变成省略号(IE有效)
查看>>
我的友情链接
查看>>
java 8 并行流 - 1
查看>>
Tomcat内存溢出的原因 三个原因
查看>>
oracle bbed工具的安装
查看>>
Java 四舎五入保留小数点后几位
查看>>
弄点‘爬叉’吃吃 (原创)
查看>>
恢复Win7右键新建菜单没有的记事本 (原创)
查看>>