time.c

来自「Solaris环境下的数据挖掘算法:birch聚类算法。该算法适用于对大量数据的」· C语言 代码 · 共 67 行

C
67
字号
/*  ========================================================================  DEVise Data Visualization Software  (c) Copyright 1992-1995  By the DEVise Development Group  Madison, Wisconsin  All Rights Reserved.  ========================================================================  Under no circumstances is this software to be copied, distributed,  or altered in any way without prior permission from the DEVise  Development Group.*//*  $Id: Time.c,v 1.6 1996/10/01 14:00:26 wenger Exp $  $Log: Time.c,v $  Revision 1.6  1996/10/01 14:00:26  wenger  Removed extra path info from includes.  Revision 1.5  1996/07/17 00:47:03  jussi  Switched the order of header file inclusions to get around  some problems.  Revision 1.4  1996/03/26 15:34:36  wenger  Fixed various compile warnings and errors; added 'clean' and  'mostlyclean' targets to makefiles; changed makefiles so that  object lists are derived from source lists.  Revision 1.3  1995/12/02 20:55:53  jussi  Substituted DeviseTime for Time and added copyright notice.  Revision 1.2  1995/09/05 21:13:05  jussi  Added/updated CVS header.*/#include <time.h>#include "machdep.h"#include "Time.h"struct timeval DeviseTime::_beginning;/***********************************************************/void DeviseTime::Init(){  struct timezone zone;  gettimeofday(&_beginning, &zone);}/***********************************************************/long DeviseTime::Now(){  struct timezone zone;  struct timeval now;  gettimeofday(&now,&zone);    return (now.tv_sec - _beginning.tv_sec) * 1000+    (now.tv_usec - _beginning.tv_usec) / 1000;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?