【写法一】

优点:程序简洁明了,逻辑清晰
缺点:

  1. 比写法二,多执行了n-1次逻辑判断
  2. 打断了循环“流水线”作业,使得编译器不能对循环进行优化处理
for (i=0; i<n; i++)
{
    if (condition)
    {
        DoSomething();
    }
    else
    {
        DoOtherthing();
    }
}

【写法二】程序效率高

if (condition)
{
    for (i=0; i<n; i++)
    {
        DoSomething();
    }
}
else
{
    for (i=0; i<n; i++)
    {
        DoOtherthing();
    }
}