All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.psjava.ds.map.hashtable.LinearProbing Maven / Gradle / Ivy

There is a newer version: 0.1.19
Show newest version
package org.psjava.ds.map.hashtable;

public class LinearProbing {

	public static HashProber create() {
		return new HashProber() {
			@Override
			public void probe(int start, int length, BucketVisitor visitor) {
				for (int i = 0; i < length; i++)
					visitor.visitAndGetContinuity((start + i) % length);
			}
		};
	}

	private LinearProbing() {
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy