Heap Completed

This commit is contained in:
2014-05-05 02:41:11 +02:00
parent 5d90623636
commit e1111bb1b9
3 changed files with 138 additions and 57 deletions

View File

@@ -28,7 +28,7 @@ public class MyEntry<K,V> implements Entry<K,V> {
@Override
public String toString() {
return ("" + key + " - " + value);
return ("(" + key + " - " + value + ")");
}
private K key;