in reply to Re: A script with a loop is running my computer Out of memory
in thread A script with a loop is running my computer Out of memory
That's a pretty vague description of log(n)...
- O(log n) => work increases logarithmically as n grows. (ie, work increases, but at a rate slower than the growth of n.)
An exact description of log(n) is: for every multiplication of n with a constant factor (like doubling, or 10-fold increase), a fixed amount of extra work gets added.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: A script with a loop is running my computer Out of memory
by davido (Cardinal) on Feb 08, 2011 at 08:56 UTC |