tvconstants.h

来自「TV-tree的c实现源码」· C头文件 代码 · 共 59 行

H
59
字号
/*                    COPYRIGHT NOTICE This material was developed by Christos Faloutsos and King-Ip Linat the University of Maryland, College Park, Department of Computer Science.Permission is granted to copy this software, to redistribute iton a nonprofit basis, and to use it for any purpose, subject tothe following restrictions and understandings. 1. Any copy made of this software must include this copyright noticein full. 2. All materials developed as a consequence of the use of thissoftware shall duly acknowledge such use, in accordance with the usualstandards of acknowledging credit in academic research. 3. The authors have made no warranty or representation that theoperation of this software will be error-free or suitable for anyapplication, and they are under under no obligation to provide anyservices, by way of maintenance, update, or otherwise.  The softwareis an experimental prototype offered on an as-is basis. 4. Redistribution for profit requires the express, written permissionof the authors. */// Author : $Author$// Date : $Date$// Id : $Id$// $Id: constants.h,v 1.2 1996/04/18 21:50:24 kilin Exp kilin $ /* constants.h *//* $Revision: 1.2 $ *//* $Date: 1996/04/18 21:50:24 $ */#define SIG_DIM            2#define DEFAULT_PAGESIZE   1024 #define BUFFER_SIZE        8192 #define MIN_FILL_PERCENT   40#define REINSERT_PERCENT   30#define MAX_BRANCH_FACTOR  DEFAULT_PAGESIZE/sizeof(TVBranch)#define MAX_BRANCH_FACTOR_PLUS MAX_BRANCH_FACTOR + 1#define MAX_ELEMENT_FACTOR  DEFAULT_PAGESIZE/sizeof(Leaf_Element)#define CONSERVE_MAX_BRANCH_FACTOR  60#define CONSERVE_MAX_ELEMENT_FACTOR  17#define STRLEN 25#define FIX_SIZE  0#define DEFAULT_NONKEYSIZE 25#define DEFAULT_PICKBRANCH_COMPARE_COUNT 6#define PHASES  3/* no. of significent dimension left if refolding is need */#define MAX_UNFOLD_DIM    1  #define MIN_UNFOLD_DIM    1  

⌨️ 快捷键说明

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