I have a stringlist with 10,000 entries. I have a shuffle routine, but accessing any of the items is taking a lot of time. Going through all 10k items takes a huge amount of time.
I want to save it do disk and then do a shuffle on the file using another method.
Any suggestions?
How is your shuffle-routine implemented? Especially the exchange-routine? If you have written your own, along these lines:
it will be very slow. Use the exchange-method on the stringlist.
This code took 78 ms on my pretty average (3 year old) computer: