码迷,mamicode.com
首页 > 其他好文 > 详细

二叉搜索树转换成双向链表

时间:2016-07-03 00:31:39      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:

 

#include<iostream>
#include<vector>
#include<queue>
#include<string>
#include<map>
using namespace std;
struct node
{
int val;
node * left,*right;
node(int _val):val(_val),left(NULL),right(NULL){}
};

void convertnode(node* root,node *& lastlistnode)
{
if(root==NULL) return;
if(root->left)
convertnode(root->left,lastlistnode);
root->left=lastlistnode;
if(lastlistnode) lastlistnode->right=root;
lastlistnode=root;
if(root->right)
convertnode(root->right,lastlistnode);

}
node* convert(node * root)
{
node* plistnode=NULL;
convertnode(root,plistnode);

while(plistnode->left)
plistnode=plistnode->left;

return plistnode;
}
int main()
{
node n1(10),n2(6),n3(14),n4(4),n5(8),n6(12),n7(16);
n1.left=&n2;
n1.right=&n3;
n2.left=&n4;
n2.right=&n5;
n3.left=&n6;
n3.right=&n7;
node * ans=convert(&n1);
while (ans)
{
cout<<ans->val<<" ";
ans=ans->right;
}
return 0;
}
//" abbaabba "

二叉搜索树转换成双向链表

标签:

原文地址:http://www.cnblogs.com/wuxiangli/p/5636275.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!