I have files that contain lists of lists. Each file has about 20.000 lists that each list member is a list of itself with 15 values. Think of it as a database table. I know we can use a binary search to find a member of a list but can I use a binary search to find matching list members in both files based on the say, second and third members of the lists and if so how?
Thanks
file1
[0][1][xx][yy][4][5]
[0][1][2][3][4][5]
file1
[0][1][2][3][4][5]
[0][1][xx][yy][4][5]