AuD
Lecture 'Algorithmen und Datenstrukturen' (code examples)
HashFunction.java
Go to the documentation of this file.
1package aud.example.hash;
2
5public abstract class HashFunction<T> {
7 public abstract long hash(T data);
8}
interface for a hash function
abstract long hash(T data)
get hash value of data