guys lemme know if there is a best solution for this problem
there are 2 files which has to be compared line to line and their sizes are 60,000 lines each and the problem is to verify each file has same lines (dito matching) and which is the feasible solution............ i have thought of two things
1. break one of them in chunks of 3000 or 4000 then compare the other file with each chunk which wud reduce some time.
2. use binary search algorithm (one of the files is a sorted one) with file pointer positioning......
please i need the result at the earliest