- 相关推荐
索尼爱立信笔试题
索尼爱立信笔试题
一、用变量a定义以下类型:(这道题目是中英文描述,我为了抄的简单就写英文了
不保证全准确,因为我是匆匆用简写记在草稿纸上的。)
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
二、关键字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;
}
四、写一个字符串反转函数,比如把“abcd”变成“dcba”,要求在空间和时间上
尽量优化。
函数原型
char* strrev(char* dest, char* src);
五、写链表操作函数
链表节点定义如下
struct ListNode
{
long id;
struct ListNode* next;
}
写一个返回下一个节点的函数,没有的话返回0
struct ListNode* ListNext(struct ListNode* cur);
写一个在已经排序好的链表中插入一个节点的函数,返回插入位置的前一个节点
如果节点已经在链表里边返回0
struct ListNode* ListInsert(struct ListNode* head,struct ListNode* newNode);
写一个删除节点的函数,返回删除后的前一个节点,如果节点不在链表里边返回0
struct ListNode* ListRemove(struct ListNode* head,struct ListNode* theNode);
(原题比我写的详细,大概就是这个意思了)
【索尼爱立信笔试题】相关文章:
爱立信机考笔经07-08
索尼上海笔经07-18
爱立信笔试题剖析07-31
索尼SONY招聘笔经07-27
爱立信 radio network consultant笔试题08-10
最新索尼笔试题分享08-10
索尼最新招聘笔试题分享08-10
索尼公司的常见面试题07-05
我的爱立信的OFFER07-16