最佳答案
这会被归类为“ Hello,World!”的 O (1)算法吗? ?
public class Hello1
{
public static void Main()
{
DateTime TwentyYearsLater = new DateTime(2035,01,01);
while ( DateTime.Now < TwentyYearsLater )
{
System.Console.WriteLine("It's still not time to print the hello ...");
}
System.Console.WriteLine("Hello, World!");
}
}
我在考虑用
DateTime TwentyYearsLater = new DateTime(2035,01,01);
while ( DateTime.Now < TwentyYearsLater )
{
// ...
}
作为繁忙循环的代码片段,当有人询问一个具有一定复杂度的算法时,作为一个笑话放进去。这样对吗?