恒生电子笔试题3
更新时间:2023-07-24 22:47:01 阅读量: 实用文档 文档下载
恒生电子笔试题
Pay attention: Don't answer on the sheet, please answer on the blank answer-sheet.
1. Specify what does “func()” do with the list "ppList", and what are the errors.
struct NODE { int nValue; struct NODE* pLeft; struct NODE* pRight; };
struct NODE_LIST { const struct NODE* pNode; struct NODE_LIST* pNext; };
struct NODE_LIST* sub_func(const struct NODE* pTree, struct NODE_LIST* pList) { if (pList == NULL) { pList = malloc(sizeof(struct NODE_LIST)); if (pList == NULL) { return 0; } pList->pNode = pTree; pList->pNext = NULL; return pList; } else { while (pList->pNext) { pList = pList->pNext; } pList->pNext = malloc(sizeof(struct NODE_LIST)); if (pList->pNext == NULL) { return 0; } pList->pNext->pNode = pTree; pList->pNext->pNext = NULL; return pList->pNext; } }
int func(const struct NODE* pTree, struct NODE_LIST** ppList) { int nNum = 0; if (pTree == NULL) {
恒生电子笔试题
return nNum; } else { struct NODE_LIST* pNew = sub_func(pTree, *ppList); int nTemp = 0; if (pTree->pLeft != NULL) { nTemp += func(pTree->pLeft, &pNew); if (pNew == NULL) { return -1; } } if (pTree->pRight != NULL) { nTemp += func(pTree->pRight, &pNew); if (pNew == NULL) { return -1; } } return nTemp + 1; } }
2. please complete the standard C function: memmove(), here is the description ():
void * memmove (void *to, const void *from, unsigned int size)
memmove copies the size bytes at from into the size bytes at to. The value returned by memmove is the value of to.
3. Given a decimal number, return the number in string of specified base (The base of a system of numbers, such as 2 in the binary system and 10 in the decimal system). The base is bigger than 1 and less than 10. For example, the given number is 99 in decimal, and return string “143” of base 8 (char* GetNumber(unsigned int nNum, unsigned int nBase) { }
4. Find a path from start position to end position in maze. The maze's width is 8, and height is 8 too, it is expressed by an two-dimensional array, the start position of it is left-up corner and its coordinate is (0, 0), and the end position is right-down corner and coordinate (7, 7). Each integer element in array defines connectivity of a block, 0 if disconnected, others
connected. For example, a path is painted in different color in the following maze expressed
恒生电子笔试题
of actual code), the array "maze" is the map of a maze, the size is 8*8. Save found path in "maze" before function return non-zero, if you find. And return 0 if there is no path which can reach end point. The returned "maze" shall be cleared with "0" except the path, as
int path(int maze[8][8]);
恒生电子笔试题
1. 说明函数"func"对 链表"ppList"做了什么,并指出其中可能的错误。
先序遍历二叉树的方式将树转化为链表。(答不出“先序”也没关系)
struct NODE { int nValue; struct NODE* pLeft; struct NODE* pRight; };
struct NODE_LIST { const struct NODE* pNode; struct NODE_LIST* pNext; };
struct NODE_LIST** sub_func(const struct NODE* pTree, struct NODE_LIST** ppList) { if (*ppList == NULL) { *ppList = malloc(sizeof(struct NODE_LIST)); if (*ppList == NULL) { return 0; } (*ppList)->pNode = pTree; (*ppList)->pNext = NULL; return ppList; } else { struct NODE_LIST* pList = (*ppList); while (pList->pNext) { pList = pList->pNext; } pList->pNext = malloc(sizeof(struct NODE_LIST)); if (pList->pNext == NULL) { return 0; } pList->pNext->pNode = pTree; pList->pNext->pNext = NULL; return &(pList->pNext); } }
int func(const struct NODE* pTree, struct NODE_LIST** ppList) {
恒生电子笔试题
int nNum = 0; if (pTree == NULL) { return nNum; } else { struct NODE_LIST** pNew = sub_func(pTree, ppList); int nTemp = 0; if (pTree->pLeft != NULL) { nTemp += func(pTree->pLeft, pNew); if (*pNew == NULL) { return -1; } } if (pTree->pRight != NULL) { nTemp += func(pTree->pRight, pNew); if (*pNew == NULL) { return -1; } } return nTemp + 1; } }
2. 请完成标准C函数:memmove()
void *memmove(void *dest, const void *src, size_t count) {
char *tmp; const char *s;
if (dest == NULL || src == NULL) { return NULL; }
if (dest <= src) { tmp = (char *)dest; s = (const char *)src; while (count--) *tmp++ = *s++; } else { tmp = (char *)dest; tmp += count; s = (const char *)src; s += count;
恒生电子笔试题
while (count--) *--tmp = *--s; }
return dest; }
3. 将一个十进制数转换成指定进制,并返回它的字符串表达(系统数字进制,对于二进制系统就是2,十进制系统就是10)。指定的进制比1大比10小。例如,十进制99转换成8进制字符串就是"143"(函数中不可使用任何C标准函数,除了malloc())。
#include <stdlib.h>
char* GetNumber(unsigned int nNum, unsigned int nBase) {
char* pRet = malloc(33); int* pNum = malloc(33 * 4); int nIndex = 0;
if (pRet == NULL | pNum == NULL) { pRet? free(pRet) : ; pNum? free(pNum) : ; return NULL; }
int nLeft = nNum; int nMod;
while (nLeft > 0) { nMod = nLeft % nBase; nLeft /= nBase; pNum[nIndex++] = nMod; }
int nC = 0;
for (; nC < nIndex; nC++) { pRet[nC] = pNum[nIndex - nC - 1] + '0'; }
pRet[nIndex] = 0;
free(pNum);
return pRet; }
4. 找出可以从开始位置至结束位置通过迷宫的路径。迷宫宽8,高也是8,由一个二维数组表示,开始位置是左上角,坐标(0, 0),结束位置是右下角,坐标(7, 7)。每个数组元素定义一个方块的连通性,0表示不通,其它表示连通。例如,下表所表示的迷宫中用不同颜色标识了一条路径。
完成以下函数,数组"maze"是迷宫的地图,大小是8*8。将找到的路径保存在"maze"
恒生电子笔试题
中,并返回非0。如果没找到可以到达终点的路径,返回0。返回的"maze"中除了路径之外其它都清空为0。如下表:
struct NODE { int row; int col; int value; struct NODE* pNodes[8]; int nNeighborNum; };
struct PATH { struct NODE* pCur; struct NODE* pNext; };
void init_maze(int maze[8][8], struct NODE maze_map[8][8]) { // save maze info into maze_map }
int check_end(struct NODE* pNode) { // check if the end position is beside }
struct NODE* get_neighbor(struct NODE** pNode, struct PATH cur) { // get neighbor node which has not been checked }
void add_checked_neighbor(struct NODE** pNode, struct NODE* pNeighbor) { // add neighbor node to the checked node list, // the next time get_neighbor() will not choose it }
int path(int maze[8][8]) { struct PATH path[64] = {}; struct NODE maze_map[8][8] = {}; struct NODE* node_examed[64] = {}; init_maze(maze, maze_map); int nCurPath = 0; path[nCurPath].pCur = &maze_map[0][0]; path[nCurPath].pNext = NULL; add_checked_neighbor(node_examed, &maze_map[0][0]);
恒生电子笔试题
while (nCurPath >= 0) { // check if reach end position if (check_end(path[nCurPath].pCur)) { goto SavePath; } // find next neighbor, and continue the next turn search struct NODE* pNextNode = get_neighbor(node_examed, path[nCurPath]); if (pNextNode) { add_checked_neighbor(node_examed, pNextNode); path[nCurPath + 1].pCur = pNextNode; path[nCurPath + 1].pNext = NULL; nCurPath++; } else { nCurPath--; } } return 0;
SavePath: // save found path to "maze" return 1; }
正在阅读:
恒生电子笔试题307-24
实木楼梯购销合同改04-07
红岩章节概括100字12-06
金蝶K3系统总账模块培训教材05-02
中国人民解放军各集团军编制战斗序列大全05-02
2010年普通高等学校招生全国统一考试理综试题及答案(全国卷II wo04-19
《哲学思维与应用》讲义04-22
妈妈,我想送你一首歌儿作文200字07-08
议论文的论点要求12-07
- 教学能力大赛决赛获奖-教学实施报告-(完整图文版)
- 互联网+数据中心行业分析报告
- 2017上海杨浦区高三一模数学试题及答案
- 招商部差旅接待管理制度(4-25)
- 学生游玩安全注意事项
- 学生信息管理系统(文档模板供参考)
- 叉车门架有限元分析及系统设计
- 2014帮助残疾人志愿者服务情况记录
- 叶绿体中色素的提取和分离实验
- 中国食物成分表2020年最新权威完整改进版
- 推动国土资源领域生态文明建设
- 给水管道冲洗和消毒记录
- 计算机软件专业自我评价
- 高中数学必修1-5知识点归纳
- 2018-2022年中国第五代移动通信技术(5G)产业深度分析及发展前景研究报告发展趋势(目录)
- 生产车间巡查制度
- 2018版中国光热发电行业深度研究报告目录
- (通用)2019年中考数学总复习 第一章 第四节 数的开方与二次根式课件
- 2017_2018学年高中语文第二单元第4课说数课件粤教版
- 上市新药Lumateperone(卢美哌隆)合成检索总结报告
- 恒生
- 试题
- 电子
- 证券基础知识讲课(银行版)2003
- 打造打动投资人创业计划书
- 第2章著作权法概述
- ansys二次开发的一些知识介绍
- 河南教师资格考试真题:2009年教师资格考试《教育心理学》真题及答案(判断说明题)
- 苏教版六年级下册音乐教案2015最新版
- linux架设FTP服务器
- 拖欠工程款的对策
- 【余世维精典讲义】有效沟通
- 浅谈高校教学档案管理工作中存在的问题及解决对策
- 假面主题晚会舞会活动策划书
- 农村综合实践报告 范文1
- 苏人版 道德与法治 九年级下册 第16课 规划美好人生 同步练习题
- 人教七年级地理下册第十章《极地地区》(含答案和解析)
- 二O一一年执法考试专业警种治安类模拟考试
- 5月30日夏蓝一:黄金白银行情走势分析
- 中承式无铰钢管混凝土系杆拱桥的顶升改造关键技术研究
- 密闭式冷却循环水系统应用中的若干问题
- 降低城市供水管网漏损率措施探析
- 《学校管理学》作业参考答案