Interview Questions on cool shell

Source: Internet
Author: User
Another interesting interview questionThe reason why I saw a question in "deep into the computer architecture" should be clear.

The questions are as follows:

Two identical functionsCodeAs follows,In the case of A, B, and C, please give three reasons: Case 1 is faster than Case 2, and Case 2 is faster than Case 1.(Compiler optimization is not considered)

Case 1

For(I =0; I <n; ++ I ){
A;
B;
C;
}

Case 2
For(I =0; I <n; ++ I ){
A;
}
For(I =0; I <n; ++ I ){
B;
}
For(I =0; I <n; ++ I ){
C;
}

My Solutions

 

Int Length = 10000 ;
Int [,] A = New Int [

Length,

Length];
Int [,] B = New Int [Length, length];
Int [,] C = New Int [Length, length];
Stopwatch watch = New Stopwatch ();
Watch. Start ();
For ( Int I = 0 ; I <length; I ++)
{
Int Temp = 0 ;
Temp = A [I, I];
Temp = B [I, I];
Temp = C [I, I];
}
Watch. Stop ();
Console. writeline (" Case 1 : "+ Watch. elapsedmilliseconds );
Watch. Restart ();
For ( Int I = 0 ; I <length; I ++)
{
Int Temp = 0 ;
Temp = A [I, I];
}
For ( Int I = 0 ; I <length; I ++)
{
Int Temp =0 ;
Temp = B [I, I];
}
For ( Int I = 0 ; I <length; I ++)
{
Int Temp = 0 ;
Temp = C [I, I];
}
Watch. Stop ();
Console. writeline (" Case 2 : "+ Watch. elapsedmilliseconds );

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.