微软面试题

这道题是微软的面试题,大意是给出一个二叉排序树,让你输出排序的链表

二叉排序树参照博客http://blog.csdn.net/hackbuteer1/article/details/7275396

转换部分参照博客http://zhedahht.blog.163.com/

#include <iostream>
#include<cmath>
#include<algorithm>
#include<stdio.h>
#include<cstring>
#include<stack>
using namespace std;
struct node
{
    int num;
    struct node *lc;
    struct node *rc;
};
bool searchtree(node *root ,int data,node *f,node *&p)
{
    if(root==NULL)
    {
        p=f;
        return false;
    }
    else if(root->num==data)
    {
        p=root;
        return true;
    }
    else if(root->num>data)
    {
        return searchtree(root->lc,data,root,p);
    }
    else if(root->num<data)
    {
        return searchtree(root->rc,data,root,p);
    }

}
void buildtree(node *&root,int data)
{
    node *p;
    node *q;
    if(!searchtree(root,data,NULL,p))
    {
        q=(struct node *)malloc(sizeof(node));
        q->num=data;
        q->lc=NULL;
        q->rc=NULL;
        if(p==NULL)
        {
            root=q;
        }
        else if(data<p->num)p->lc=q;
        else p->rc=q;
    }
    else return;
}
void convertnode(node *p,node *&lastoflist)
{
    if(p==NULL)return;
    node *pcurrent=p;
    if(pcurrent->lc)
    {
        convertnode(pcurrent->lc,lastoflist);
    }

    pcurrent->lc=lastoflist;
    if(lastoflist)
        lastoflist->rc=pcurrent;
    lastoflist=pcurrent;
    if(pcurrent->rc)
    {
        convertnode(p->rc,lastoflist);
    }
}
node *zhuanhuan(node *p)
{
    node*lastoflist=NULL;
    convertnode(p,lastoflist);
    node*headoflist=lastoflist;
    while(headoflist&&headoflist->lc)
    {
        headoflist=headoflist->lc;
    }
    return headoflist;

}
void zhongxubianli(node *p)
{
    if(p==NULL)return;
    zhongxubianli(p->lc);
    printf("%d ",p->num);
    zhongxubianli(p->rc);
}
int main()
{
    node *ptree=NULL;
    int n;
    int i;
    scanf("%d",&n);
    for(i=0;i<n;i++)
    {
        int x;
        scanf("%d",&x);
        buildtree(ptree,x);
    }
    node*phead=zhuanhuan(ptree);
    while(phead)
    {
        printf("%d ",phead->num);
        phead=phead->rc;
    }
        return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值