|
中軟的面試比較經典,也比較嚴格,一般有四輪,類似于微軟的面試。中軟面過以后,根據項目組,會推到美國微軟那邊運用live meeting & con-call 再面一次。以下是我的面試題及個人的小分析,拿出來和大家share一下。希望更多的人能過這個坎。如有什么問題,可以一起交流。直接進入主題:
1. English communication. (sale yourself, project information, your interesting,and how to deal with problem you encounter etc.)
2. the using of key words "new".
Regarding this problem, you can refer to my other blog with this path: new . or you can get more information from interNET.
3.Write a method which can remove the same unit from a Array which has been sorted.
//在排序好的數組中移除相同的元素public int [] RemoveCommon(int [] a){
if (a.Length==0)
{
return a;
}
List <int> Result = new List<int>();
int i , j;
i = j = 0;
int temp = a[0];
while (i < a.Length)
{
if (a[i] != temp)
{
j++;
temp = a[i];
Result.Add(temp);
}
i++;
}
// convert List to Array
//......
return Result;
}
鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。