#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 "

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-02-07
  • 2022-12-23
  • 2021-11-21
猜你喜欢
  • 2021-09-14
  • 2022-12-23
  • 2021-06-13
  • 2021-08-20
  • 2022-12-23
相关资源
相似解决方案