Is there a way (short of testing on every configuration possible) to determine a maximum "length" array based on ability to carry out the sort?
I have data file of varying lengths, but each line contains eight
"pieces" of data on ancestors. Some people will have a file that
is 50K (50K people, meaning the array will be at least of size
People1(50000,8), other will have just 300 people, and there is
always that one person who will try for one million people.
Can I determine ahead of time the maximum number of people a user's
computer can work with, so rather than let the program fail, I can
count the people and see if it is managable?
Thank you.
Robert Carneal
------------------
I have data file of varying lengths, but each line contains eight
"pieces" of data on ancestors. Some people will have a file that
is 50K (50K people, meaning the array will be at least of size
People1(50000,8), other will have just 300 people, and there is
always that one person who will try for one million people.
Can I determine ahead of time the maximum number of people a user's
computer can work with, so rather than let the program fail, I can
count the people and see if it is managable?

Thank you.
Robert Carneal
------------------
Comment