欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

C語言實現(xiàn)時間戳轉(zhuǎn)日期的算法(推薦)

 更新時間:2016年06月13日 16:13:12   投稿:jingxian  
下面小編就為大家?guī)硪黄狢語言實現(xiàn)時間戳轉(zhuǎn)日期的算法(推薦)。小編覺得挺不錯的,現(xiàn)在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧

1、算法

時間是有周期規(guī)律的,4年一個周期(平年、平年、平年、閏年)共計1461天。Windows上C庫函數(shù)time(NULL)返回的是從1970年1月1日以來的毫秒數(shù),我們最后算出來的年數(shù)一定要加上這個基數(shù)1970??偟奶鞌?shù)除以1461就可以知道經(jīng)歷了多少個周期;總的天數(shù)對1461取余數(shù)就可以知道剩余的不足一個周期的天數(shù),對這個余數(shù)進行判斷也就可以得到月份和日了。

當然了,C語言庫函數(shù):localtime就可以獲得一個時間戳對應(yīng)的具體日期了,這里 主要說的是實現(xiàn)的一種算法。

2、C語言代碼實現(xiàn)

int nTime = time(NULL);//得到當前系統(tǒng)時間
int nDays = nTime/DAYMS + 1;//time函數(shù)獲取的是從1970年以來的毫秒數(shù),因此需要先得到天數(shù)
int nYear4 = nDays/FOURYEARS;//得到從1970年以來的周期(4年)的次數(shù)
int nRemain = nDays%FOURYEARS;//得到不足一個周期的天數(shù)
int nDesYear = 1970 + nYear4*4;
int nDesMonth = 0, nDesDay = 0;
bool bLeapYear = false;
if ( nRemain<365 )//一個周期內(nèi),第一年
{//平年

}
else if ( nRemain<(365+365) )//一個周期內(nèi),第二年
{//平年
nDesYear += 1;
nRemain -= 365;
}
else if ( nRemain<(365+365+365) )//一個周期內(nèi),第三年
{//平年
nDesYear += 2;
nRemain -= (365+365);
}
else//一個周期內(nèi),第四年,這一年是閏年
{//潤年
nDesYear += 3;
nRemain -= (365+365+365);
bLeapYear = true;
}
GetMonthAndDay(nRemain, nDesMonth, nDesDay, bLeapYear);

計算月份和日期的函數(shù):

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);	//每個四年的總天數(shù)
static const int DAYMS = 24*3600;	//每天的毫秒數(shù)

void GetMonthAndDay(int nDays, int& nMonth, int& nDay, bool IsLeapYear)
{
	int *pMonths = IsLeapYear?MON2:MON1;
	//循環(huán)減去12個月中每個月的天數(shù),直到剩余天數(shù)小于等于0,就找到了對應(yīng)的月份
	for ( int i=0; i<12; ++i )
	{
		int nTemp = nDays - pMonths[i];
		if ( nTemp<=0 )
		{
			nMonth = i+1;
			if ( nTemp == 0 )//表示剛好是這個月的最后一天,那么天數(shù)就是這個月的總天數(shù)了
				nDay = pMonths[i];
			else
				nDay = nDays;
			break;
		}
		nDays = nTemp;
	}
}

3、附上C語言庫函數(shù)的實現(xiàn)

<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語言實現(xiàn)時間戳轉(zhuǎn)日期的算法(推薦)就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持腳本之家。

相關(guān)文章

  • C++中的取余函數(shù)remainder與fmod詳解

    C++中的取余函數(shù)remainder與fmod詳解

    這篇文章主要為大家詳細介紹了C++中的取余函數(shù)remainder、fmod的具體使用以及自編的remainder及fmod,文中的示例代碼講解詳細,感興趣的小伙伴可以跟隨小編一起學習學習
    2023-05-05
  • C語言進階:指針的進階(1)

    C語言進階:指針的進階(1)

    這篇文章主要介紹了C語言指針詳解及用法示例,介紹了其相關(guān)概念,然后分享了幾種用法,具有一定參考價值。需要的朋友可以了解下
    2021-09-09
  • C語言中的結(jié)構(gòu)體內(nèi)嵌函數(shù)用法

    C語言中的結(jié)構(gòu)體內(nèi)嵌函數(shù)用法

    這篇文章主要介紹了C語言中的結(jié)構(gòu)體內(nèi)嵌函數(shù)用法,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
    2023-02-02
  • 擴展KMP算法(Extend KMP)

    擴展KMP算法(Extend KMP)

    我們這里說的KMP不是拿來放電影的(雖然我很喜歡這個軟件),而是一種算法。KMP算法是拿來處理字符串匹配的。今天我們談到的是對KMP算法的拓展
    2014-08-08
  • C++ QT智能指針的使用詳解

    C++ QT智能指針的使用詳解

    這篇文章主要介紹了C++ QT智能指針的使用,Qt是一個跨平臺的C++框架,主要用來開發(fā)圖形用戶界面程序,也可以開發(fā)不帶界面的命令行程序,下面我們來了解QT智能指針是如何使用的
    2023-12-12
  • C++編程異常處理中try和throw以及catch語句的用法

    C++編程異常處理中try和throw以及catch語句的用法

    這篇文章主要介紹了C++編程異常處理中try和throw以及catch語句的用法,包括對Catch塊的計算方式的介紹,需要的朋友可以參考下
    2016-01-01
  • 基于對話框程序中讓對話框捕獲WM_KEYDOWN消息的實現(xiàn)方法

    基于對話框程序中讓對話框捕獲WM_KEYDOWN消息的實現(xiàn)方法

    下面我們將通過程序給大家演示基于對話框的應(yīng)用程序?qū)M_KEYDOWN消息的捕獲。需要的朋友可以參考下
    2013-05-05
  • MFC對話框中實現(xiàn)走馬燈效果

    MFC對話框中實現(xiàn)走馬燈效果

    這篇文章主要為大家詳細介紹了MFC對話框中實現(xiàn)走馬燈效果,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2020-05-05
  • C語言實現(xiàn)循環(huán)鏈表

    C語言實現(xiàn)循環(huán)鏈表

    這篇文章主要為大家詳細介紹了C語言實現(xiàn)循環(huán)鏈表,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2020-07-07
  • C語言中定義與聲明有哪些區(qū)別

    C語言中定義與聲明有哪些區(qū)別

    在C/C++中有一個基礎(chǔ)且重要的知識,什么是聲明?什么是定義?他們的區(qū)別是什么?本文將帶你理清其中的區(qū)別
    2022-07-07

最新評論