⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tvindexpara.h

📁 TV-tree的c实现源码
💻 H
字号:
/*                    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: indexpara.h,v 1.1 1996/02/19 23:49:43 kilin Exp $ class TVTree;class TVTree_Para {    friend ostream& operator<< (ostream&, const TVTree_Para&);    friend istream& operator>> (istream&, TVTree_Para&);    friend TVTree;public :   TVTree_Para();   TVTree_Para(const int, const int, const float, const float, const int);   TVTree_Para(const TVTree_Para&);   TVTree_Para& operator=(const TVTree_Para&);   void SetPageSize(int);   void SetUnfoldDim(int);   void SetMinFillPercent(float);   void SetReinsertPercent(float);   void SetPickTVBranchCompareCount(int);   int page_size;  // size of a page (unit read/write from disk)   int unfold_dim; // number of dimensions to unfold each time   float min_fill_percent; // 0 to 50, minimum fill percentage   float reinsert_percent; // 0 to 100 - min_fill_percent, percentage of node to be reinserted   int pickbranch_compare_count; // Number of entry compared for overlap when picking branches};

⌨️ 快捷键说明

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