This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Node { | |
public int data; | |
public Node next; | |
public Node(int data, Node next) { | |
this.data = data; this.next = next; | |
} | |
} | |
class LongIntParallelHashMultimap { | |
Node[] l ; |