lexicalpartitioningstrategy.java

来自「MG4J (Managing Gigabytes for Java) is a 」· Java 代码 · 共 58 行

JAVA
58
字号
package it.unimi.dsi.mg4j.index.cluster;/*		  * MG4J: Managing Gigabytes for Java * * Copyright (C) 2006-2007 Sebastiano Vigna  * *  This library is free software; you can redistribute it and/or modify it *  under the terms of the GNU Lesser General Public License as published by the Free *  Software Foundation; either version 2.1 of the License, or (at your option) *  any later version. * *  This library is distributed in the hope that it will be useful, but *  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY *  or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License *  for more details. * *  You should have received a copy of the GNU Lesser General Public License *  along with this program; if not, write to the Free Software *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * *//** A way to associate a term number with a local index out of a given set and a local term number in the local index. *  * <p>When partitioning lexically an index (i.e., termwise), we need a way to associate * to each term {@linkplain #localIndex(int) a local index} (the index * that will contain the postings of that term) and {@linkplain #localNumber(int) a local * term number} (the number of the term in the local index). *  * <p>Usually, a lexical partitioning strategy has a matching  * {@link it.unimi.dsi.mg4j.index.cluster.LexicalClusteringStrategy} whose methods * satisfy the following equations: * <pre style="margin: 1em 0; text-align:center"> * globalNumber(localIndex(t), localNumber(t)) = t * &lt;localIndex(globalNumber(i, l)), localNumber(globalNumber(i, l))> = &lt;i, l> * </pre>  *  * @author Alessandro Arrabito * @author Sebastiano Vigna */public interface LexicalPartitioningStrategy extends PartitioningStrategy {	/** Returns the index to which a given term number is mapped by this strategy.	 * 	 * @param globalNumber the term global number.	 * @return the corresponding local index, or -1 if the term should be removed from the partitioned index.	 */	int localIndex( int globalNumber );	/** Returns the local term number given a global term number.	 * @param globalNumber a global term number.	 * @return the corresponding local term number, or -1 if the term should be removed from the partitioned index.	 */	int localNumber( final int globalNumber );}

⌨️ 快捷键说明

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