索尼愛立信2006北京暑期實(shí)習(xí)筆試題
My Comment:
(1)索愛的C編程題很是基礎(chǔ),而且據(jù)證實(shí):第一、二大題均能在網(wǎng)上搜到原題和答案。Sigh,索愛真是懶到極點(diǎn)了!
(2)數(shù)據(jù)結(jié)構(gòu)部分也體現(xiàn)了手機(jī)終端類企業(yè)的命題熱點(diǎn),即鏈表和字符串,跟Microsoft、Google等動(dòng)輒就考Tree和Graph風(fēng)格迥異。
(3)果然沒有考算法設(shè)計(jì)題。
p.s.最有趣的是索愛居然也考了邏輯推理等智力題,整的跟真的似的。
憑著記憶寫一點(diǎn),攢攢rp吧
考試分兩個(gè)階段,每階段一個(gè)小時(shí),一共兩個(gè)小時(shí)
第一階段,試卷為英文,考邏輯和智力題
四道邏輯大題,考的都是總結(jié)推理之類的,選擇題。
題干,例如,一條路上住了七家房子,誰家住誰家東邊,誰家住誰家西邊
誰家不住在頭尾,誰家正好住在第幾座房子等等
每個(gè)大題有6、7道小問題
問的無非也是誰家可能住在幾號(hào)房子,哪兩家不可能是鄰居,等等
其它三道題目也類似。一個(gè)是三對夫婦點(diǎn)菜,一個(gè)是三層樓辦車展。
最后一題是關(guān)于飛行表演中的飛行員分配,我沒看懂題目,瞎填了一氣:(
還有一道智力題,是九個(gè)九宮格,呈九宮方位排列,一共81個(gè)格
填入9組1~9,讓每行每列以及每個(gè)小九宮格里邊,1~9都只出現(xiàn)一次。
已經(jīng)給出了十幾個(gè)數(shù)字,填剩下的。
我時(shí)間不夠,也沒填完,555。
第二階段是技術(shù)筆試。我投的是軟件測試,筆試試卷是中文描述的`?嫉亩际莄語言。
一、用變量a定義以下類型:(這道題目是中英文描述,我為了抄的簡單就寫英文了
不保證全準(zhǔn)確,因?yàn)槲沂谴掖矣煤唽懹浽诓莞寮埳系摹?
a) an integer
b) a pointer to an integer
c) a pointer to a pointer to an integer
d) an array of 10 integers
e) an array of 10 pointers to integers
f) a pointer to an array of 10 integers
g) a pointer to a function that makes an integer as an argument and returns
an integer
h) an array of 10 pointers to functions that makes an integer as an argument
and returns an integer
二、關(guān)鍵字static的作用是什么?
三、這段代碼有什么問題?
strunt S_A{
int a[10];
};
void f()
{
int i;
strunt S_A *s_ptr;
for (i=0,i<10,i++)
s_ptr->a[i]=i;
}
四、寫一個(gè)字符串反轉(zhuǎn)函數(shù),比如把“abcd”變成“dcba”,要求在空間和時(shí)間上
盡量優(yōu)化。
函數(shù)原型
char* strrev(char* dest, char* src);
五、寫鏈表操作函數(shù)
鏈表節(jié)點(diǎn)定義如下
struct ListNode
{
long id;
struct ListNode* next;
}
寫一個(gè)返回下一個(gè)節(jié)點(diǎn)的函數(shù),沒有的話返回0
struct ListNode* ListNext(struct ListNode* cur);
寫一個(gè)在已經(jīng)排序好的鏈表中插入一個(gè)節(jié)點(diǎn)的函數(shù),返回插入位置的前一個(gè)節(jié)點(diǎn)
如果節(jié)點(diǎn)已經(jīng)在鏈表里邊返回0
struct ListNode* ListInsert(struct ListNode* head,struct ListNode* newNode);
寫一個(gè)刪除節(jié)點(diǎn)的函數(shù),返回刪除后的前一個(gè)節(jié)點(diǎn),如果節(jié)點(diǎn)不在鏈表里邊返回0
struct ListNode* ListRemove(struct ListNode* head,struct ListNode* theNode);
(原題比我寫的詳細(xì),大概就是這個(gè)意思了)
【索尼愛立信2006北京暑期實(shí)習(xí)筆試題】相關(guān)文章:
愛立信實(shí)習(xí)生面試經(jīng)驗(yàn)分享01-20
360筆試題目07-11
華為2017筆試題08-16
人人網(wǎng)產(chǎn)品類暑期實(shí)習(xí)筆試題08-10
華為2017筆試試題08-10
桂林銀行筆試題筆經(jīng)07-20
愛立信群面的面試經(jīng)驗(yàn)總結(jié)01-16
索尼黑卡攝影技巧10-15