While i was studying for midterm about binary trees, i found a statement that any arbitrary n-node binary tree can be transformed into any other n-node binary tree with at most 2*n-2 rotations. Is there any proof for that? I found some kind of proof with asymptotic notations but it was not that clear. I mean could someone explain/show why it is true? And if it says that n-node binary tree, does it include the root?
Binary tree transformation using rotations
5.2k Views Asked by fhuseynli At
2
There are 2 best solutions below
Related Questions in ALGORITHM
- Voice Recognizer Access on Kindle Fire HD 6
- Kindle Fire HD10 media query
- What is the AmazonApp store alternative for market:// URL to open an app page (for rating purposes)
- Entire container div disappears on android
- Amazon GameCircle on First Generation (1st) Kindle Fire Initializes as Guest
- Android / kindle drag drop freezing occasionally
- App not showing on kindle devices (only showing on non-amazon devices)
- How App Can Open Market &/or Browser in Kindle
- Accessing Media Library on Kindle fire
- Can I use android SpeechRecognition in a Kindle Fire HD?
Related Questions in MATH
- Voice Recognizer Access on Kindle Fire HD 6
- Kindle Fire HD10 media query
- What is the AmazonApp store alternative for market:// URL to open an app page (for rating purposes)
- Entire container div disappears on android
- Amazon GameCircle on First Generation (1st) Kindle Fire Initializes as Guest
- Android / kindle drag drop freezing occasionally
- App not showing on kindle devices (only showing on non-amazon devices)
- How App Can Open Market &/or Browser in Kindle
- Accessing Media Library on Kindle fire
- Can I use android SpeechRecognition in a Kindle Fire HD?
Related Questions in DATA-STRUCTURES
- Voice Recognizer Access on Kindle Fire HD 6
- Kindle Fire HD10 media query
- What is the AmazonApp store alternative for market:// URL to open an app page (for rating purposes)
- Entire container div disappears on android
- Amazon GameCircle on First Generation (1st) Kindle Fire Initializes as Guest
- Android / kindle drag drop freezing occasionally
- App not showing on kindle devices (only showing on non-amazon devices)
- How App Can Open Market &/or Browser in Kindle
- Accessing Media Library on Kindle fire
- Can I use android SpeechRecognition in a Kindle Fire HD?
Related Questions in BINARY-TREE
- Voice Recognizer Access on Kindle Fire HD 6
- Kindle Fire HD10 media query
- What is the AmazonApp store alternative for market:// URL to open an app page (for rating purposes)
- Entire container div disappears on android
- Amazon GameCircle on First Generation (1st) Kindle Fire Initializes as Guest
- Android / kindle drag drop freezing occasionally
- App not showing on kindle devices (only showing on non-amazon devices)
- How App Can Open Market &/or Browser in Kindle
- Accessing Media Library on Kindle fire
- Can I use android SpeechRecognition in a Kindle Fire HD?
Related Questions in TREE-ROTATION
- Voice Recognizer Access on Kindle Fire HD 6
- Kindle Fire HD10 media query
- What is the AmazonApp store alternative for market:// URL to open an app page (for rating purposes)
- Entire container div disappears on android
- Amazon GameCircle on First Generation (1st) Kindle Fire Initializes as Guest
- Android / kindle drag drop freezing occasionally
- App not showing on kindle devices (only showing on non-amazon devices)
- How App Can Open Market &/or Browser in Kindle
- Accessing Media Library on Kindle fire
- Can I use android SpeechRecognition in a Kindle Fire HD?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
This answer is from CLRS 3rd Edition textbook question 13.2-4.
Let
LEFT = an entire left linked list binary tree
RIGHT = an entire right linked list binary tree.
You can easily rotate LEFT to RIGHT in (n-1) rotations.
e.g: n = 3 3 2 1 2 to 1 3 to 2 1 3Proof: Since by definition, each right rotation will increase the length of the right most path by at least 1. Therefore, starting from right most path with length 1 (worst case), you need at most (n-1) rotations performed to make it into RIGHT.
Thus, you can easily conclude that any arbitrary shape of binary tree with n nodes can rotate into RIGHT within (n-1) rotations. Let T_1 be node you begin with Let T_2 be node you end with.
You can rotate T_1 to RIGHT within (n-1) rotations. Similarly, You can rotate T_2 to RIGHT within (n-1) rotations.
Therefore, To rotate T_1 into T_2, simply rotate T_1 into RIGHT , then do the inverse rotation to rotate from RIGHT into T_2.
Therefore, you can do this in (n-1)+(n-1) = 2n-2 rotations in upper bound.