gpt4 book ai didi

c++ - 易于理解的两个UNIX时间戳之间的持续时间

转载 作者:搜寻专家 更新时间:2023-10-31 00:58:43 24 4
gpt4 key购买 nike

我正在尝试计算两个UNIX时间戳之间的差异(即自1970年以来的秒数)。我想说例如“3年,4个月,6天等”,但我不知道如何计算不同持续时间的leap年和月份。当然这是一个已解决的问题..?

这与其他问题类似,这些问题想要在一个具有固定/同质持续时间(例如3小时或7周等)的单元中表达近似持续时间。即使天数不同,1月1日至2月1日的结果也将是“1个月”,1月2日至1月1日的结果也将是“1个月”。

我想精确地表示完整的持续时间,但以年/月/日/小时/分钟为单位。 C++解决方案将不胜感激!

最佳答案

对于较早的日期,请使用Leap Year公式开始计算从Unix开始日期(1970年1月1日)到您的第一个时间戳记的天数。

(对于leap秒,如果您需要获得精确的精度,不知道,希望会超出范围吗?)

通过将日期限制为1600AD之后的and年和
阳历的算法来自:
http://en.wikipedia.org/wiki/Leap_year
if year modulo 400 is 0
then is_leap_year
else if year modulo 100 is 0
then not_leap_year
else if year modulo 4 is 0
then is_leap_year
else
not_leap_year

如果一年是a年,则2月为29天,否则为28天

现在您知道第一个变量的月份,day_of_month,年份

接下来,使用the年公式,直到第二个时间戳为止的另一组天数。

typedef struct {
int year;
int month;
int dayOfMonth;
} date_struct;

static int days_in_month[2][13] = {
{0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31},
{0, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31},
};

int isLeapYear(int year) {
int value;
value = year;

//if year modulo 400 is 0
// then is_leap_year
value = year % 400;
if(value == 0) return 1;

//else if year modulo 100 is 0
// then not_leap_year
value = year % 100;
if(value == 0) return 0;

//else if year modulo 4 is 0
// then is_leap_year
value = year % 4;
if(value == 0) return 1;

//else
// not_leap_year
return 0;
}

date_struct addOneDay(date_struct ds, int isLeapYear){
int daysInMonth;

ds.dayOfMonth++;

//If the month is February test for leap year and adjust daysInMonth
if(ds.month == 2) {
daysInMonth = days_in_month[isLeapYear][ds.month];
} else {
daysInMonth = days_in_month[0][ds.month];
}

if(ds.dayOfMonth > daysInMonth) {
ds.month++;
ds.dayOfMonth = 1;
if(ds.month > 12) {
ds.year += 1;
ds.month = 1;
}
}
return ds;
}

long daysBetween(date_struct date1, date_struct date2){
long result = 0l;
date_struct minDate = min(date1, date2);
date_struct maxDate = max(date1, date2);

date_struct countingDate;
countingDate.year = minDate.year;
countingDate.month = minDate.month;
countingDate.dayOfMonth = minDate.dayOfMonth;

int leapYear = isLeapYear(countingDate.year);
int countingYear = countingDate.year;

while(isLeftDateSmaller(countingDate,maxDate)) {
countingDate = addOneDay(countingDate,leapYear);
//if the year changes while counting, check to see if
//it is a new year
if(countingYear != countingDate.year) {
countingYear = countingDate.year;
leapYear = isLeapYear(countingDate.year);
}

result++;
}

return result;
}

(我编写了一个开放源代码程序,用C / C++给出了两个日历日期之间的差。它的源代码(上面已经提到过一些)可能会为您提供自己的解决方案灵感,或者也许您可以对其中的某些方法进行修改,也是 http://mrflash818.geophile.net/software/timediff/)

关于c++ - 易于理解的两个UNIX时间戳之间的持续时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34916758/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com