C语言实现时间戳转日期的算法(推荐)

 更新时间:2016年06月13日 16:13:12   投稿:jingxian  
下面小编就为大家带来一篇C语言实现时间戳转日期的算法(推荐)。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧

1、算法

时间是有周期规律的,4年一个周期(平年、平年、平年、闰年)共计1461天。Windows上C库函数time(NULL)返回的是从1970年1月1日以来的毫秒数,我们最后算出来的年数一定要加上这个基数1970。总的天数除以1461就可以知道经历了多少个周期;总的天数对1461取余数就可以知道剩余的不足一个周期的天数,对这个余数进行判断也就可以得到月份和日了。

当然了,C语言库函数:localtime就可以获得一个时间戳对应的具体日期了,这里 主要说的是实现的一种算法。

2、C语言代码实现

int nTime = time(NULL);//得到当前系统时间
int nDays = nTime/DAYMS + 1;//time函数获取的是从1970年以来的毫秒数,因此需要先得到天数
int nYear4 = nDays/FOURYEARS;//得到从1970年以来的周期(4年)的次数
int nRemain = nDays%FOURYEARS;//得到不足一个周期的天数
int nDesYear = 1970 + nYear4*4;
int nDesMonth = 0, nDesDay = 0;
bool bLeapYear = false;
if ( nRemain<365 )//一个周期内,第一年
{//平年

}
else if ( nRemain<(365+365) )//一个周期内,第二年
{//平年
nDesYear += 1;
nRemain -= 365;
}
else if ( nRemain<(365+365+365) )//一个周期内,第三年
{//平年
nDesYear += 2;
nRemain -= (365+365);
}
else//一个周期内,第四年,这一年是闰年
{//润年
nDesYear += 3;
nRemain -= (365+365+365);
bLeapYear = true;
}
GetMonthAndDay(nRemain, nDesMonth, nDesDay, bLeapYear);

计算月份和日期的函数:

static const int MON1[12] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};	//平年
static const int MON2[12] = {31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};	//闰年
static const int FOURYEARS = (366 + 365 +365 +365);	//每个四年的总天数
static const int DAYMS = 24*3600;	//每天的毫秒数

void GetMonthAndDay(int nDays, int& nMonth, int& nDay, bool IsLeapYear)
{
	int *pMonths = IsLeapYear?MON2:MON1;
	//循环减去12个月中每个月的天数,直到剩余天数小于等于0,就找到了对应的月份
	for ( int i=0; i<12; ++i )
	{
		int nTemp = nDays - pMonths[i];
		if ( nTemp<=0 )
		{
			nMonth = i+1;
			if ( nTemp == 0 )//表示刚好是这个月的最后一天,那么天数就是这个月的总天数了
				nDay = pMonths[i];
			else
				nDay = nDays;
			break;
		}
		nDays = nTemp;
	}
}

3、附上C语言库函数的实现

<pre name="code" class="cpp">/***
*errno_t _gmtime32_s(ptm, timp) - convert *timp to a structure (UTC)
*
*Purpose:
*    Converts the calendar time value, in 32 bit internal format, to
*    broken-down time (tm structure) with the corresponding UTC time.
*
*Entry:
*    const time_t *timp - pointer to time_t value to convert
*
*Exit:
*    errno_t = 0 success
* tm members filled-in
*    errno_t = non zero
* tm members initialized to -1 if ptm != NULL
*
*Exceptions:
*
*******************************************************************************/

errno_t __cdecl _gmtime32_s (
struct tm *ptm,
const __time32_t *timp
)
{
__time32_t caltim;/* = *timp; *//* calendar time to convert */
int islpyr = 0; /* is-current-year-a-leap-year flag */
REG1 int tmptim;
REG3 int *mdays;/* pointer to days or lpdays */
struct tm *ptb = ptm;

_VALIDATE_RETURN_ERRCODE( ( ptm != NULL ), EINVAL )
memset( ptm, 0xff, sizeof( struct tm ) );

_VALIDATE_RETURN_ERRCODE( ( timp != NULL ), EINVAL )

caltim = *timp;
_VALIDATE_RETURN_ERRCODE_NOEXC( ( caltim >= _MIN_LOCAL_TIME ), EINVAL )

/*
 * Determine years since 1970. First, identify the four-year interval
 * since this makes handling leap-years easy (note that 2000 IS a
 * leap year and 2100 is out-of-range).
 */
tmptim = (int)(caltim / _FOUR_YEAR_SEC);
caltim -= ((__time32_t)tmptim * _FOUR_YEAR_SEC);

/*
 * Determine which year of the interval
 */
tmptim = (tmptim * 4) + 70; /* 1970, 1974, 1978,...,etc. */

if ( caltim >= _YEAR_SEC ) {

  tmptim++;    /* 1971, 1975, 1979,...,etc. */
  caltim -= _YEAR_SEC;

  if ( caltim >= _YEAR_SEC ) {

tmptim++;  /* 1972, 1976, 1980,...,etc. */
caltim -= _YEAR_SEC;

/*
 * Note, it takes 366 days-worth of seconds to get past a leap
 * year.
 */
if ( caltim >= (_YEAR_SEC + _DAY_SEC) ) {

tmptim++;  /* 1973, 1977, 1981,...,etc. */
caltim -= (_YEAR_SEC + _DAY_SEC);
}
else {
/*
 * In a leap year after all, set the flag.
 */
islpyr++;
}
  }
}

/*
 * tmptim now holds the value for tm_year. caltim now holds the
 * number of elapsed seconds since the beginning of that year.
 */
ptb->tm_year = tmptim;

/*
 * Determine days since January 1 (0 - 365). This is the tm_yday value.
 * Leave caltim with number of elapsed seconds in that day.
 */
ptb->tm_yday = (int)(caltim / _DAY_SEC);
caltim -= (__time32_t)(ptb->tm_yday) * _DAY_SEC;

/*
 * Determine months since January (0 - 11) and day of month (1 - 31)
 */
if ( islpyr )
  mdays = _lpdays;
else
  mdays = _days;


for ( tmptim = 1 ; mdays[tmptim] < ptb->tm_yday ; tmptim++ ) ;

ptb->tm_mon = --tmptim;

ptb->tm_mday = ptb->tm_yday - mdays[tmptim];

/*
 * Determine days since Sunday (0 - 6)
 */
ptb->tm_wday = ((int)(*timp / _DAY_SEC) + _BASE_DOW) % 7;

/*
 * Determine hours since midnight (0 - 23), minutes after the hour
 * (0 - 59), and seconds after the minute (0 - 59).
 */
ptb->tm_hour = (int)(caltim / 3600);
caltim -= (__time32_t)ptb->tm_hour * 3600L;

ptb->tm_min = (int)(caltim / 60);
ptb->tm_sec = (int)(caltim - (ptb->tm_min) * 60);

ptb->tm_isdst = 0;
return 0;

}

以上这篇C语言实现时间戳转日期的算法(推荐)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

相关文章

  • 用C语言实现扫雷游戏

    用C语言实现扫雷游戏

    这篇文章主要为大家详细介绍了用C语言实现扫雷游戏,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2021-06-06
  • C语言分支和循环详解

    C语言分支和循环详解

    C语言是一门结构化的程序设计语言,当C语言用来描述生活中的事物时,会用到三种结构:顺序结构(不去赘述),选择结构(对应分支语句),循环结构(对应循环语句),分支语句:分支语句分为两种,一种是if语句,一种是switch语句
    2021-10-10
  • C++详细分析引用的使用及其底层原理

    C++详细分析引用的使用及其底层原理

    引用是C++一个很重要的特性,顾名思义是某一个变量或对象的别名,对引用的操作与对其所绑定的变量或对象的操作完全等价,这篇文章主要给大家总结介绍了C++中引用的相关知识点,需要的朋友可以参考下
    2022-04-04
  • C++ Qt开发之使用QUdpSocket实现组播通信

    C++ Qt开发之使用QUdpSocket实现组播通信

    Qt 是一个跨平台C++图形界面开发库,利用Qt可以快速开发跨平台窗体应用程序,本文将重点介绍如何运用QUdpSocket组件实现基于UDP的组播通信,感兴趣的可以了解下
    2024-03-03
  • 深入学习C语言mmap和shm*的使用方法技巧

    深入学习C语言mmap和shm*的使用方法技巧

    本文将详细介绍mmap和shm的工作原理,包括它们在内存映射和共享内存方面的优势和适用场景,同时,文章还会分享一些使用mmap和shm的技巧和经验,以帮助读者优化并提高程序性能,使你能够在实际项目中更好地利用这些技术来加速数据共享和多线程应用
    2023-10-10
  • C++11标准库bind函数应用教程

    C++11标准库bind函数应用教程

    bind函数定义在头文件functional中,可以将bind函数看做成一个通用的函数适配器,他接收一个可调用对象,生成一个新的可调用对象来"适应"原对象的参数列表。本文将带大家详细了解一下bind函数的应用详解
    2021-12-12
  • c++截取汉字和英文混合字符串代码实例

    c++截取汉字和英文混合字符串代码实例

    这篇文章主要介绍了c++截取汉字英文混合字符串,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2019-04-04
  • C语言二叉排序(搜索)树实例

    C语言二叉排序(搜索)树实例

    这篇文章主要为大家详细介绍了C语言二叉排序树实例,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-10-10
  • Matlab实现将图像序列合并为视频的方法详解

    Matlab实现将图像序列合并为视频的方法详解

    MATLAB是一种高性能语言,用于操纵矩阵、执行技术计算、绘图等。它代表矩阵实验室。借助这个软件,我们可以从图像中创建视频。这篇文章主要介绍了Matlab实现将图像序列合并为视频的四个方法,希望对大家有所帮助
    2023-03-03
  • 详解C++17中的decltype类型推导

    详解C++17中的decltype类型推导

    这篇文章主要介绍了C++17中的decltype类型推导,本文从泛型编程中经常会遇到2个常见问题入手,循序渐进的分析了从C++11开始引入的关键字decltype,需要的朋友可以参考下
    2023-06-06

最新评论