ใครช่วยกรุณาช่วยฉันทำความเข้าใจอัลกอริทึมการเดินทางข้ามต้นไม้ตามลำดับมอร์ริสต่อไปนี้โดยไม่ต้องใช้สแต็กหรือการเรียกซ้ำ ฉันพยายามเข้าใจว่ามันทำงานอย่างไร แต่มันก็หนีฉันไป
1. Initialize current as root
2. While current is not NULL
If current does not have left child
a. Print current’s data
b. Go to the right, i.e., current = current->right
Else
a. In current's left subtree, make current the right child of the rightmost node
b. Go to this left child, i.e., current = current->left
ฉันเข้าใจว่าต้นไม้ได้รับการแก้ไขในลักษณะที่current node
สร้างขึ้นright child
จากmax node
in right subtree
และใช้คุณสมบัตินี้สำหรับการข้ามผ่านแบบเรียงลำดับ แต่นอกเหนือจากนั้นฉันหลงทาง
แก้ไข: พบโค้ด c ++ ที่มาพร้อมนี้ ฉันมีช่วงเวลาที่ยากลำบากในการทำความเข้าใจว่าต้นไม้ได้รับการแก้ไขอย่างไรหลังจากแก้ไขแล้ว เวทมนตร์อยู่ในelse
ประโยคซึ่งจะถูกตีเมื่อมีการแก้ไขใบไม้ที่เหมาะสม ดูรหัสสำหรับรายละเอียด:
/* Function to traverse binary tree without recursion and
without stack */
void MorrisTraversal(struct tNode *root)
{
struct tNode *current,*pre;
if(root == NULL)
return;
current = root;
while(current != NULL)
{
if(current->left == NULL)
{
printf(" %d ", current->data);
current = current->right;
}
else
{
/* Find the inorder predecessor of current */
pre = current->left;
while(pre->right != NULL && pre->right != current)
pre = pre->right;
/* Make current as right child of its inorder predecessor */
if(pre->right == NULL)
{
pre->right = current;
current = current->left;
}
// MAGIC OF RESTORING the Tree happens here:
/* Revert the changes made in if part to restore the original
tree i.e., fix the right child of predecssor */
else
{
pre->right = NULL;
printf(" %d ",current->data);
current = current->right;
} /* End of if condition pre->right == NULL */
} /* End of if condition current->left == NULL*/
} /* End of while */
}
pre->right = NULL;