收藏 分享(赏)

笔试题.doc

上传人:ysd1539 文档编号:6432759 上传时间:2019-04-12 格式:DOC 页数:4 大小:25.55KB
下载 相关 举报
笔试题.doc_第1页
第1页 / 共4页
笔试题.doc_第2页
第2页 / 共4页
笔试题.doc_第3页
第3页 / 共4页
笔试题.doc_第4页
第4页 / 共4页
亲,该文档总共4页,全部预览完了,如果喜欢就下载吧!
资源描述

1、ESD1202 试题一、 选择题(10 分)1. 下列那个选项是系统可以识别的标示符(b)a) 2_num b) intc) _abc d) %a2. 把整数-4 左移一位得到的整数是 (c)a) -4 c) -8b) 16 d) 无正确答案二、 填空题(30 分)1. const int* p 其中 p 是_指向整型常量的指针_ ;int* const p 其中 p 是_指向整型的指针常量_。2. 头文件中的 ifndef/define/endif 的作用是_防止头文件多次导入重编译造成错误_。3. 以下为 Windows NT 下的 32 位 C+程序,请计算 sizeof 的值void

2、Func ( char str100)请计算sizeof( str ) = ( 100 )char str = “Hello” ;char *p = str ;int n = 10;请计算sizeof (str ) = ( 6 ) sizeof ( p ) = ( 4 ) sizeof ( n ) = ( 4 )void *p = malloc( 100 );请计算sizeof ( p ) = ( 4 )4. 写一个“标准”宏 MIN,这个宏输入两个参数并返回较小的一个_#define MIN(a,b) (a)(b)?(b):(a)_。5. 虚函数的作用_子类中函数继承父类中的函数时形成多态_

3、。三、简答题1、#include 和 #include “filename.h” 有什么区别。 (5 分)#include :只在系统标准库中查找相应的头文件#include “filename.h”:在当前文件夹查找相应的头文件,如果没有找到,则在标准库中查找相应的头文件2、不调用 C+/C 的字符串库函数,请编写函数 strcpy (10 分)已知 strcpy 函数的原型是char *strcpy(char *strDest, const char *strSrc);其中 strDest 是目的字符串,strSrc 是源字符串。char *strcpy(char *strDest, co

4、nst char *strSrc)int i=0;while(strSrci!=0)strDesti=strSrci;i+;strDesti=0;return strDest;3、编写类 String 的构造函数、析构函数和赋值函数,已知类 String 的原型为:class Stringpublic:String(const char *str = NULL); / 普通构造函数String(const String / 拷贝构造函数 String(void); / 析构函数String / 赋值函数private:char *m_data; / 用于保存字符串; (20 分)String:

5、String(const char *str )m_data=new charstrlen(str)+1;int i=0;while(stri)m_datai=stri;i+;m_datai=0;String:String(const String int i=0;while(other.m_datai)this-m_datai=other.m_datai;i+;this-m_datai=0;String:String()delete m_data;Stringwhile(others.m_datai)this-m_datai=others.m_datai;i+;this-m_datai=0;return *this;四、请用完整代码实现快速排序。 (代码写背面) (25 分)已知数组为 int a10=12,5,7,1,34,9,0,20,11,3;void sort(int*a,int n)if(na1)swap(a1,a0);return;swap(an/2,a0);int jie=a0;int *l=a+1;int *r=a+n-1;while (lr)while(*ljiewhile (!(*rjie)if(lr)swap(*l,*r);if(*rjie)swap(*r,a0);sort(a,r-a);sort(r+1,n-1-(r-a);

展开阅读全文
相关资源
猜你喜欢
相关搜索
资源标签

当前位置:首页 > 中等教育 > 试题课件

本站链接:文库   一言   我酷   合作


客服QQ:2549714901微博号:道客多多官方知乎号:道客多多

经营许可证编号: 粤ICP备2021046453号世界地图

道客多多©版权所有2020-2025营业执照举报