How do I reduce the amount of time the array is accessed, at the moment it accesses the array 2 times to find the largest number in a sequence of numbers provided by the user,
int i=0;
int max = -1;
int a_i = -1;
for (i=0; i<length; i++)
{
a_i = array(a,i);
if (a_i > max)
{
max = a_i;
}
return max;
full code on pastebin
any help appreciated.
}) I think it's only accessing the array once. – Skizz May 4 '12 at 15:40