搜索二叉树:每个节点的左子树的值都小于当前节点,右子树的节点值都大于当前节点。其中序遍历就是一个有序的序列
转化成双向链表,需要记录一下头节点,和前一个节点,将前一个节点和当前节点相连
pre
head
convert(pRoot){
if(pRoot == null)return null;
convert(pRoot.left);
if(pre = null){
pre = pRoot;
head = pRoot;
}else{
pre.right = pRoot;
pRoot.left = pre;
pre = pRoot;
}
convert(pRoot.right);
return head;
}
标签:pre,转换成,pRoot,链表,二叉树,null,节点 From: https://www.cnblogs.com/materialdog/p/17301086.html