数据结构2013微软面试100题.doc

数据结构2013微软面试100题.doc

ID:35807919

大小:185.00 KB

页数:91页

时间:2019-04-19

数据结构2013微软面试100题.doc_第1页
数据结构2013微软面试100题.doc_第2页
数据结构2013微软面试100题.doc_第3页
数据结构2013微软面试100题.doc_第4页
数据结构2013微软面试100题.doc_第5页
资源描述:

《数据结构2013微软面试100题.doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库

1、1.把二元查找树转变成排序的双向链表题目:输入一棵二元查找树,将该二元查找树转换成一个排序的双向链表。要求不能创建任何新的结点,只调整指针的指向。10/614//481216转换成双向链表4=6=8=10=12=14=16。首先我们定义的二元查找树节点的数据结构如下:structBSTreeNode{intm_nValue;//valueofnodeBSTreeNode*m_pLeft;//leftchildofnodeBSTreeNode*m_pRight;//rightchildofn

2、ode};ANSWER:Thisisatraditionalproblemthatcanbesolvedusingrecursion. Foreachnode,connectthedoublelinkedlistscreatedfromleftandrightchildnodetoformafulllist./** *@paramrootTherootnodeofthetree *@returnTheheadnodeoftheconvertedlist. */BSTreeNode*treeToL

3、inkedList(BSTreeNode*root){ BSTreeNode*head,*tail; helper(head,tail,root); returnhead;}voidhelper(BSTreeNode*&head,BSTreeNode*&tail,BSTreeNode*root){ BSTreeNode*lt,*rh; if(root==NULL){   head=NULL,tail=NULL;   return; } helper(head,lt,root->m_pLeft);

4、 helper(rh,tail,root->m_pRight); if(lt!=NULL){   lt->m_pRight=root;   root->m_pLeft=lt; }else {   head=root; } if(rh!=NULL){   root->m_pRight=rh;   rh->m_pLeft=root; }else{   tail=root; }}2.设计包含min函数的栈。定义栈的数据结构,要求添加一个min函数,能够得到栈的最小元素。要求函数min、push以及po

5、p的时间复杂度都是O(1)。ANSWER:StackisaLIFOdatastructure.Whensomeelementispoppedfromthestack,thestatuswillrecovertotheoriginalstatusasbeforethatelementwaspushed.Sowecanrecovertheminimumelement,too.structMinStackElement{ intdata; intmin;};structMinStack{ MinSta

6、ckElement*data; intsize; inttop;}MinStackMinStackInit(intmaxSize){ MinStackstack; stack.size=maxSize; stack.data=(MinStackElement*)malloc(sizeof(MinStackElement)*maxSize); stack.top=0; returnstack;}voidMinStackFree(MinStackstack){ free(stack.data);}v

7、oidMinStackPush(MinStackstack,intd){ if(stack.top==stack.size)error(“outofstackspace.”); MinStackElement*p=stack.data[stack.top]; p->data=d; p->min=(stack.top==0?d:stack.data[top-1]); if(p->min>d)p->min=d; top++;}intMinStackPop(MinStackstack){ if(sta

8、ck.top==0)error(“stackisempty!”); returnstack.data[--stack.top].data;}intMinStackMin(MinStackstack){ if(stack.top==0)error(“stackisempty!”); returnstack.data[stack.top-1].min;}3.求子数组的最大和题目:输入一个整形数组,数组里有正数也有负数。数组中连续的一个或多个整数组成一个子数组,每个子数组都有一个和。求所有子数组的和的

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。