有没有人知道我可以下载的Java双重表项实现?
我需要做这样的事情
1 2 3
_______
a| x y z
b| h l m
c| o a k
table.get(a,1)
会返回x
当然,它应该使用任何Object作为键,值等
答案 0 :(得分:3)
根据您的需要,有两种基本方法。
一个是制作Hashtable
(或类似)Hashtable
s。
Hashtable<Integer, Hashtable<String, String>> = ...;
另一种方法是构建自己的数据类型,表示(Integer,String)对,因此您可以这样做:
Hashtable<YourFancyDatatype, String>
答案 1 :(得分:1)
您的问题的答案部分在于之前关于SO的问题: Java generics Pair<String, String> stored in HashMap not retrieving key->value properly
import java.lang.*;
import java.util.*;
public class Pair<TYPEA, TYPEB> implements Comparable< Pair<TYPEA, TYPEB> > {
protected final TYPEA Key_;
protected final TYPEB Value_;
public Pair(TYPEA key, TYPEB value) {
Key_ = key;
Value_ = value;
}
public TYPEA getKey() {
return Key_;
}
public TYPEB getValue() {
return Value_;
}
public String toString() {
System.out.println("in toString()");
StringBuffer buff = new StringBuffer();
buff.append("Key: ");
buff.append(Key_);
buff.append("\tValue: ");
buff.append(Value_);
return(buff.toString() );
}
public int compareTo( Pair<TYPEA, TYPEB> p1 ) {
System.out.println("in compareTo()");
if ( null != p1 ) {
if ( p1.equals(this) ) {
return 0;
} else if ( p1.hashCode() > this.hashCode() ) {
return 1;
} else if ( p1.hashCode() < this.hashCode() ) {
return -1;
}
}
return(-1);
}
public int hashCode() {
int hashCode = Key_.hashCode() + (31 * Value_.hashCode());
System.out.println("in hashCode() [" + Integer.toString(hashCode) + "]");
return(hashCode);
}
@Override
public boolean equals(Object o) {
System.out.println("in equals()");
if (o instanceof Pair) {
Pair<?, ?> p1 = (Pair<?, ?>) o;
if ( p1.Key_.equals( this.Key_ ) && p1.Value_.equals( this.Value_ ) ) {
return(true);
}
}
return(false);
}
public static void main(String [] args) {
HashMap< Pair<String, int>, String> table = new HashMap<Pair<String,int>, String>();
table.put(new Pair<String, int>("a", 1), "x");
table.put(new Pair<String, int>("a", 2), "y");
table.put(new Pair<String, int>("a", 3), "z");
table.put(new Pair<String, int>("b", 1), "h");
table.put(new Pair<String, int>("b", 2), "l");
table.put(new Pair<String, int>("b", 3), "m");
table.put(new Pair<String, int>("c", 1), "o");
table.put(new Pair<String, int>("c", 2), "a");
table.put(new Pair<String, int>("c", 3), "k");
String val = table.get(new Pair<String, int>("a", 1)); //val is x for this input pair
}
}
答案 2 :(得分:0)
我假设你有一个字符/对象和一个数量的数组,并希望在你的表中相互交叉。您可以将每个字符映射到0 ... qtyOfCharacters之间的数字,并简单地创建一个二维数组Object [] [] table = new Object [A] [B],其中A是刚映射的字符/对象的数量,B是列数。
要将字符/对象映射到数字,您应该使用HashMap / HashTable。
这个想法是,如果你在“a,3”访问元素,你应该写表[charmap.get(“a”)] [3]