void mystery2 (int n)
{
int i;
for (i = 1; i <= n; i++) {
double x = i;
double delta = 1 / (double)i;
while ( x > 0 )
x -= delta;
}
return 0;
}
如何使用像这里的跟踪表http://pages.cs.wisc.edu/~vernon/cs367/notes/3.COMPLEXITY.html#application而不是通过猜测来确定该程序的时间复杂度?