一份软件工程师的面试试题


Posted in 面试题 onFebruary 01, 2016
1、现有1000个苹果,10个盒子,问各个盒子内应该分别放入多少个苹果,才能使得用户要买任意1至1000之间的一个苹果数,都可以给他(卖的时候是整个盒子卖,不能拆盒子的包装)。
2、请仔细阅读下面的资料:
1)材料一:CArray
template class CArray : public CObject
Parameters:
TYPE
Template parameter specifying the type of objects stored in the array.
TYPE is a parameter that is returned by CArray.
ARG_TYPE
Template parameter specifying the argument type used to access objects stored in the array.
Often a reference to TYPE. ARG_TYPE is a parameter that is passed to CArray.
Remarks:
The CArray class supports arrays that are are similar to C arrays, but can dynamically shrink and grow as necessary.
Array indexes always start at position 0. You can decide whether to fix the upper bound or allow the array to expand when you add elements past the current bound. Memory is allocated contiguously to the upper bound, even if some elements are null.
int CArray::Add (ARG_TYPE newElement);
Return Value:
The index of the added element.
Parameters:
ARG_TYPE
Template parameter specifying the type of arguments referencing elements in this array.
newElement
The element to be added to this array.
TYPE& CArray::operator [] (int nIndex);
Parameters:
TYPE
Template parameter specifying the type of elements in this array.
nIndex
Index of the element to be accessed.
Remarks:
Returns the array reference of element at the specified index.
2)材料二:CList
templateclass CList : public CObject
Parameters:
TYPE
Type of object stored in the list.
ARG_TYPE
Type used to reference objects stored in the list. Can be a reference.
Remarks:
The CList class supports ordered lists of nonunique objects accessible sequentially or by value.
CList lists behave like doubly-linked lists.
void CList::AddTail(ARG_TYPE newElement);
Parameters:
ARG_TYPE
Template parameter specifying the type of the list element (can be a reference).
newElement
The element to be added to this list.
Remarks:
Adds a new element or list of elements to the tail of this list. The list can be empty before the operation.
3)材料三: realloc
realloc
Reallocate memory blocks.
void *realloc(void *memblock, size_t size);
Return Value:
The return value points to a storage space that is guaranteed to be suitably aligned for storage of any type of object. To get a pointer to a type other than void, use a type cast on the return value.
Remarks:
The size argument gives the new size of the block, in bytes. The contents of the block are unchanged up to the shorter of the new and old sizes, although the new block can be in a different location. Because the new block can be in a new memory location, the pointer returned by realloc is not guaranteed to be the pointer passed through the memblock argument.
4)请指出下面这段代码可能会出现的问题
CList g_ValueList;
CArray g_ValuePool;
void AddNewValue (const VARIANT& newValue)
{
g_ValueList.AddTail(&g_ValuePool[g_ValuePool.Add(newValue)]);
}
3、有一无符号整型数组,大小为10, 初始的数值随机,但在[0, 99]之间。请用C语言写一个过滤程序,令数组内的数据互不相等。
说明:
1.若数组内有相等的数据,可令某一数值加1或减1作出偏移,直至不等为止。
2.数组内的数据只能在[0, 99]之间。
3.保持数组内的数据位置不变,即对应下标不变。
4.按要求编写以下函数。
功能:将给定缓冲区中的#字符移到字符串尾部
函数名称:ChangeToTail
入口参数:pSZ指向缓冲区的指针, nSize缓冲区长度
出口:pSZ所指缓冲区中的#字符被移到缓冲区尾部
返回值:在出口缓冲区中第一个#的位置,若缓冲区中无#字符则返回-1
说明:如传入#W#W#W#WW#, 10 则传出时应转换为WWWWW#####并且返回值为5
int ChangeToTail(BYTE* pSZ, UINT nSize)
{
// Todo:请在此加入您的代码
}
5、在金山,有一个非常经典有趣的游戏,称为杀人游戏。此游戏角色有:好人(m人)、坏人(n人)、村长(1人)、裁判(1人)。角色采用一定方式(如:抓阄)分配。村长、裁判两个角色是公开的,而好人、坏人两个角色则只要裁判和本人心知肚明。其玩法如下:
游戏开始了,裁判说:“天黑了”,这是所有其他角色都低头闭上眼睛(不准作弊!)。然后裁判说:“坏人开始活动”,此时坏人抬起头,并相互商议,杀死一个好人。然后裁判说:“天亮了”,此时所有人抬头,被杀死的那个好人宣布出局。剩下的人在村长的主持下,开始判断杀人凶手。每个人可以根据各人的表情反应,判断并提议杀死自己心目中的坏人。不过最终的裁决权属于村长,综合大家的意见杀死一人。此时裁判宣布此人出局。游戏进入下一轮,由天黑到天亮,再有2人出局,如此反复,直到最后好人先被全部杀死,则游戏结束,“邪恶”的一方战胜了“正义”的一方;而另一个结局则是在大家以及村长的英明决断下,坏人被全部杀死,则“正义”的一方战胜了“邪恶”的一方。
现在,我们的问题是,请写出你的思路,并编写一个C/C++语言程序,求出:在坏人有两个(n = 2)的情况下,需要多少个好人(m = ?),才能够使这个游戏比较公平,也就是说,从概率上说,“正义”的一方与“邪恶”的一方胜利的几率最接近于50%。
(此题与下面一题选做一道)
6、在以上的杀人游戏中,还有一个玩法,就是取消村长这个角色,“天亮”后剩余的人每个人投票列出自己心目中最怀疑的2个人,以此决定让谁出局。试问,在此玩法下,上面的问题又何解?
7.C++程序设计
1).写出以下程序的运行结果:
#include
class Base
{
public:
Base()
{
cout }
Base(const Base &theBase)
{
cout }
~Base()
{
cout }
void Open()
{
OnOpen();
}
private:
virtual void OnOpen() = 0;
};
class Derived : public Base
{
public:
Derived()
{
cout }
Derived(const Derived &theDerived)
{
cout }
~Derived()
{
cout }
private:
virtual void OnOpen()
{
//这里可能抛出异常
}
};
Base *CreateInstance()
{
return new Derived();
}
int main()
{
Base *pBase = ::CreateInstance();
if (pBase)
{
pBase->Open();
delete pBase;
}
return 0;
}
2).在1)中,类Base和类Derived的实现有没有问题?如果有,如何修改?
3).说明1)中类Base的Open函数和OnOpen函数的设计目的和意义。
4).使用STL技术修改main()函数中的代码,使之成为异常安全的。

1、现有1000个苹果,10个盒子,问各个盒子内应该分别放入多少个苹果,才能使得用户要买任意1至1000之间的一个苹果数,都可以给他(卖的时候是整个盒子卖,不能拆盒子的包装)。

2、请仔细阅读下面的资料:

1)材料一:CArray

template class CArray : public CObject

Parameters:

TYPE

Template parameter specifying the type of objects stored in the array.

TYPE is a parameter that is returned by CArray.

ARG_TYPE

Template parameter specifying the argument type used to access objects stored in the array.

Often a reference to TYPE. ARG_TYPE is a parameter that is passed to CArray.

Remarks:

The CArray class supports arrays that are are similar to C arrays, but can dynamically shrink and grow as necessary.

Array indexes always start at position 0. You can decide whether to fix the upper bound or allow the array to expand when you add elements past the current bound. Memory is allocated contiguously to the upper bound, even if some elements are null.

int CArray::Add (ARG_TYPE newElement);

Return Value:

The index of the added element.

Parameters:

ARG_TYPE

Template parameter specifying the type of arguments referencing elements in this array.

newElement

The element to be added to this array.

TYPE& CArray::operator [] (int nIndex);

Parameters:

TYPE

Template parameter specifying the type of elements in this array.

nIndex

Index of the element to be accessed.

Remarks:

Returns the array reference of element at the specified index.

2)材料二:CList

templateclass CList : public CObject

Parameters:

TYPE

Type of object stored in the list.

ARG_TYPE

Type used to reference objects stored in the list. Can be a reference.

Remarks:

The CList class supports ordered lists of nonunique objects accessible sequentially or by value.

CList lists behave like doubly-linked lists.

void CList::AddTail(ARG_TYPE newElement);

Parameters:

ARG_TYPE

Template parameter specifying the type of the list element (can be a reference).

newElement

The element to be added to this list.

Remarks:

Adds a new element or list of elements to the tail of this list. The list can be empty before the operation.

3)材料三: realloc

realloc

Reallocate memory blocks.

void *realloc(void *memblock, size_t size);

Return Value:

The return value points to a storage space that is guaranteed to be suitably aligned for storage of any type of object. To get a pointer to a type other than void, use a type cast on the return value.

Remarks:

The size argument gives the new size of the block, in bytes. The contents of the block are unchanged up to the shorter of the new and old sizes, although the new block can be in a different location. Because the new block can be in a new memory location, the pointer returned by realloc is not guaranteed to be the pointer passed through the memblock argument.

4)请指出下面这段代码可能会出现的问题

CList g_ValueList;

CArray g_ValuePool;

void AddNewValue (const VARIANT& newValue)

{

g_ValueList.AddTail(&g_ValuePool[g_ValuePool.Add(newValue)]);

}

3、有一无符号整型数组,大小为10, 初始的数值随机,但在[0, 99]之间。请用C语言写一个过滤程序,令数组内的数据互不相等。

说明:

1.若数组内有相等的数据,可令某一数值加1或减1作出偏移,直至不等为止。

2.数组内的数据只能在[0, 99]之间。

3.保持数组内的数据位置不变,即对应下标不变。

4、 按要求编写以下函数。

功能:将给定缓冲区中的#字符移到字符串尾部

函数名称:ChangeToTail

入口参数:pSZ指向缓冲区的指针, nSize缓冲区长度

出口:pSZ所指缓冲区中的#字符被移到缓冲区尾部

返回值:在出口缓冲区中第一个#的位置,若缓冲区中无#字符则返回-1

说明:如传入#W#W#W#WW#, 10 则传出时应转换为WWWWW#####并且返回值为5

int ChangeToTail(BYTE* pSZ, UINT nSize)

{

// Todo:请在此加入您的代码

}

5、在金山,有一个非常经典有趣的游戏,称为杀人游戏。此游戏角色有:好人(m人)、坏人(n人)、村长(1人)、裁判(1人)。角色采用一定方式(如:抓阄)分配。村长、裁判两个角色是公开的,而好人、坏人两个角色则只要裁判和本人心知肚明。其玩法如下:

游戏开始了,裁判说:“天黑了”,这是所有其他角色都低头闭上眼睛(不准作弊!)。然后裁判说:“坏人开始活动”,此时坏人抬起头,并相互商议,杀死一个好人。然后裁判说:“天亮了”,此时所有人抬头,被杀死的那个好人宣布出局。剩下的人在村长的主持下,开始判断杀人凶手。每个人可以根据各人的表情反应,判断并提议杀死自己心目中的坏人。不过最终的裁决权属于村长,综合大家的意见杀死一人。此时裁判宣布此人出局。游戏进入下一轮,由天黑到天亮,再有2人出局,如此反复,直到最后好人先被全部杀死,则游戏结束,“邪恶”的一方战胜了“正义”的一方;而另一个结局则是在大家以及村长的英明决断下,坏人被全部杀死,则“正义”的一方战胜了“邪恶”的一方。

现在,我们的问题是,请写出你的思路,并编写一个C/C++语言程序,求出:在坏人有两个(n = 2)的情况下,需要多少个好人(m = ?),才能够使这个游戏比较公平,也就是说,从概率上说,“正义”的一方与“邪恶”的一方胜利的几率最接近于50%。

(此题与下面一题选做一道)

6、在以上的杀人游戏中,还有一个玩法,就是取消村长这个角色,“天亮”后剩余的人每个人投票列出自己心目中最怀疑的2个人,以此决定让谁出局。试问,在此玩法下,上面的问题又何解?

7.C++程序设计

1).写出以下程序的运行结果:

#include

class Base

{

public:

Base()

{

cout
}

Base(const Base &theBase)

{

cout
}

~Base()

{

cout
}

void Open()

{

OnOpen();

}

private:

virtual void OnOpen() = 0;

};

class Derived : public Base

{

public:

Derived()

{

cout
}

Derived(const Derived &theDerived)

{

cout
}

~Derived()

{

cout
}

private:

virtual void OnOpen()

{

//这里可能抛出异常

}

};

Base *CreateInstance()

{

return new Derived();

}

int main()

{

Base *pBase = ::CreateInstance();

if (pBase)

{

pBase->Open();

delete pBase;

}

return 0;

}

2).在1)中,类Base和类Derived的实现有没有问题?如果有,如何修改?

3).说明1)中类Base的Open函数和OnOpen函数的设计目的和意义。

4).使用STL技术修改main()函数中的代码,使之成为异常安全的。

Tags in this post...

面试题 相关文章推荐
Weblogc domain问题
Jan 27 面试题
简单介绍Object类的功能、常用方法
Oct 02 面试题
定义一结构体数组表示分数,并求两个分数相加之和
Jun 11 面试题
如果NULL定义成#define NULL((char *)0)难道不就可以向函数传入不加转换的NULL了吗
Feb 15 面试题
了解AppleShare protocol(AppleShare协议)吗
Aug 28 面试题
Linux如何为某个操作添加别名
Mar 01 面试题
Solaris操作系统的线程机制
Dec 23 面试题
什么是虚拟内存?虚拟内存有什么优势?
Feb 19 面试题
JavaScript获取当前url根目录(路径)
Feb 19 面试题
如何提高MySql的安全性
Jun 19 面试题
Final类有什么特点
Apr 25 面试题
J2EE的优越性主要表现在哪些方面
Mar 28 面试题
瀑布模型都有哪些优缺点
Jun 23 #面试题
常见的软件开发流程有哪些
Nov 14 #面试题
MIS软件工程师的面试题
Apr 22 #面试题
软件测试工程师面试问题精选
Oct 28 #面试题
配置管理计划的主要内容有哪些
Jun 20 #面试题
中间件分为哪几类
Sep 18 #面试题
软件测试有哪些?什么是配置项?
Feb 12 #面试题
You might like
用ADODB来让PHP操作ACCESS数据库的方法
2006/12/31 PHP
PHP程序61条面向对象分析设计的经验小结
2008/11/12 PHP
destoon实现调用自增数字从1开始的方法
2014/08/21 PHP
thinkPHP框架乐观锁和悲观锁实例分析
2019/10/30 PHP
JavaScript设计模式之工厂方法模式介绍
2014/12/28 Javascript
理解JavaScript中worker事件api
2015/12/25 Javascript
Angular2 多级注入器详解及实例
2016/10/30 Javascript
基于jQuery实现的查看全文功能【实用】
2016/12/11 Javascript
js输入框使用正则表达式校验输入内容的实例
2017/02/12 Javascript
Javascript实现倒计时时差效果
2017/05/18 Javascript
vue 中自定义指令改变data中的值
2017/06/02 Javascript
Vue.js项目中管理每个页面的头部标签的两种方法
2018/06/25 Javascript
微信实现自动跳转到用其他浏览器打开指定APP下载
2019/02/15 Javascript
一步快速解决微信小程序中textarea层级太高遮挡其他组件
2019/03/04 Javascript
vue动态子组件的两种实现方式
2019/09/01 Javascript
使用Vue-cli 中为单独页面设置背景图片铺满全屏
2020/07/17 Javascript
微信小程序连续签到7天积分获得功能的示例代码
2020/08/20 Javascript
不依任何赖第三方,单纯用vue实现Tree 树形控件的案例
2020/09/21 Javascript
[01:09:16]DOTA2-DPC中国联赛 正赛 SAG vs Dynasty BO3 第一场 1月25日
2021/03/11 DOTA
Tensorflow简单验证码识别应用
2017/05/25 Python
Python 多线程的实例详解
2017/09/07 Python
python批量修改文件编码格式的方法
2018/05/31 Python
Python绘制热力图示例
2019/09/27 Python
python range实例用法分享
2020/02/06 Python
Python smtp邮件发送模块用法教程
2020/06/15 Python
在keras中实现查看其训练loss值
2020/06/16 Python
10 套华丽的CSS3 按钮小结
2012/10/03 HTML / CSS
美国知名的摄影器材销售网站:Adorama
2017/02/01 全球购物
执行力心得体会
2013/12/31 职场文书
生产班组长岗位职责
2014/01/05 职场文书
2014年消防工作实施方案
2014/02/20 职场文书
大学新生军训自我鉴定范文
2014/09/13 职场文书
面试感谢信范文
2015/01/22 职场文书
风之谷观后感
2015/06/11 职场文书
怎样写好工作计划
2019/04/10 职场文书
Java版 简易五子棋小游戏
2022/05/04 Java/Android