欢迎来到天天文库
浏览记录
ID:35807919
大小:185.00 KB
页数:91页
时间:2019-04-19
《数据结构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.求子数组的最大和题目:输入一个整形数组,数组里有正数也有负数。数组中连续的一个或多个整数组成一个子数组,每个子数组都有一个和。求所有子数组的和的
此文档下载收益归作者所有