I need some help creating a non-binary tree (or some other data structure that will better solve my problem)
- by EDO
I have about ten lists of numbers and some strings. Each list has about <= 30K lines. Each line on a list has a distinct number.
I need to build an efficient way of finding all the lines in each list that has the same 'control' number (or key for dB guys) and comparing what is in their string parts. I am writing this in Java.
I have thought about using trees but my brain cells are about burnt now. I need some help.