dataseg.h

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

H
53
字号
/*  ========================================================================  DEVise Data Visualization Software  (c) Copyright 1992-1996  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.*//*  Header file for DataSeg (data segment) class.  This class holds info  for data that occupies only part of a file (or another data source). *//*  $Id: DataSeg.h,v 1.1 1996/06/04 14:21:40 wenger Exp $  $Log: DataSeg.h,v $  Revision 1.1  1996/06/04 14:21:40  wenger  Ascii data can now be read from session files (or other files  where the data is only part of the file); added some assertions  to check for pointer alignment in functions that rely on this;  Makefile changes to make compiling with debugging easier. */#ifndef _DataSeg_h_#define _DataSeg_h_class DataSeg{public:	static void Set(char *label, char *filename, long offset, long length);	static void Get(char *&label, char *&filename, long &offset, long &length);private:	static char *	_label;	static char *	_filename;	static long		_offset;	static long		_length;};#endif /* _DataSeg_h_ *//*============================================================================*/

⌨️ 快捷键说明

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