| 1 | 1 | class Zipper: |
| 2 | | # Tree is a dict with keys "value" (int), "left" (dict or None), "right" (dict or None) |
| 2 | """ |
| 3 | A zipper for navigating and manipulating a binary tree. |
| 4 | |
| 5 | The zipper maintains a focus on a specific node in the tree, allowing for |
| 6 | functional navigation and modification operations. |
| 7 | """ |
| 8 | |
| 9 | def __init__(self, tree, breadcrumbs=None): |
| 10 | """ |
| 11 | Initialize a Zipper. |
| 12 | |
| 13 | Args: |
| 14 | tree: The current subtree (focus) |
| 15 | breadcrumbs: Path information to navigate back up the tree |
| 16 | """ |
| 17 | self.tree = tree |
| 18 | self.breadcrumbs = breadcrumbs or [] |
| 19 | |
| 3 | 20 | @staticmethod |
| 4 | 21 | def from_tree(tree: dict) -> "Zipper": |
| 5 | | pass |
| 6 | | |
| 22 | """ |
| 23 | Create a zipper from a binary tree. |
| 24 | |
| 25 | Args: |
| 26 | tree: A binary tree represented as a dict with keys "value", "left", and "right" |
| 27 | |
| 28 | Returns: |
| 29 | A new Zipper instance focused on the root of the tree |
| 30 | """ |
| 31 | # Edge Case: Handle None input |
| 32 | if tree is None: |
| 33 | return None |
| 34 | return Zipper(tree.copy()) |
| 35 | |
| 7 | 36 | def value(self) -> int: |
| 8 | | pass |
| 9 | | |
| 37 | """ |
| 38 | Get the value of the focus node. |
| 39 | |
| 40 | Returns: |
| 41 | The value of the current node |
| 42 | """ |
| 43 | # Edge Case: Handle None tree |
| 44 | if self.tree is None: |
| 45 | return None |
| 46 | return self.tree["value"] |
| 47 | |
| 10 | 48 | def set_value(self, value: int) -> "Zipper": |
| 11 | | pass |
| 12 | | |
| 49 | """ |
| 50 | Set the value of the focus node. |
| 51 | |
| 52 | Args: |
| 53 | value: The new value for the focus node |
| 54 | |
| 55 | Returns: |
| 56 | A new Zipper with the updated value |
| 57 | """ |
| 58 | # Edge Case: Handle None tree |
| 59 | if self.tree is None: |
| 60 | return self |
| 61 | new_tree = self.tree.copy() |
| 62 | new_tree["value"] = value |
| 63 | return Zipper(new_tree, self.breadcrumbs) |
| 64 | |
| 13 | 65 | def left(self) -> "Zipper | None": |
| 14 | | pass |
| 15 | | |
| 66 | """ |
| 67 | Move the focus to the left child. |
| 68 | |
| 69 | Returns: |
| 70 | A new Zipper focused on the left child, or None if no left child exists |
| 71 | """ |
| 72 | # Edge Case: Handle None tree |
| 73 | if self.tree is None or self.tree["left"] is None: |
| 74 | return None |
| 75 | |
| 76 | # Create breadcrumb to remember how to get back to this node |
| 77 | breadcrumb = { |
| 78 | "parent": self.tree, |
| 79 | "side": "left", |
| 80 | "sibling": self.tree["right"] |
| 81 | } |
| 82 | |
| 83 | return Zipper(self.tree["left"], self.breadcrumbs + [breadcrumb]) |
| 84 | |
| 16 | 85 | def set_left(self, tree: dict | None) -> "Zipper": |
| 17 | | pass |
| 18 | | |
| 86 | """ |
| 87 | Set the left child of the focus node. |
| 88 | |
| 89 | Args: |
| 90 | tree: The new left subtree (or None to remove the left child) |
| 91 | |
| 92 | Returns: |
| 93 | A new Zipper with the updated left child |
| 94 | """ |
| 95 | # Edge Case: Handle None tree |
| 96 | if self.tree is None: |
| 97 | return self |
| 98 | new_tree = self.tree.copy() |
| 99 | new_tree["left"] = tree |
| 100 | return Zipper(new_tree, self.breadcrumbs) |
| 101 | |
| 19 | 102 | def right(self) -> "Zipper | None": |
| 20 | | pass |
| 21 | | |
| 103 | """ |
| 104 | Move the focus to the right child. |
| 105 | |
| 106 | Returns: |
| 107 | A new Zipper focused on the right child, or None if no right child exists |
| 108 | """ |
| 109 | # Edge Case: Handle None tree |
| 110 | if self.tree is None or self.tree["right"] is None: |
| 111 | return None |
| 112 | |
| 113 | # Create breadcrumb to remember how to get back to this node |
| 114 | breadcrumb = { |
| 115 | "parent": self.tree, |
| 116 | "side": "right", |
| 117 | "sibling": self.tree["left"] |
| 118 | } |
| 119 | |
| 120 | return Zipper(self.tree["right"], self.breadcrumbs + [breadcrumb]) |
| 121 | |
| 22 | 122 | def set_right(self, tree: dict | None) -> "Zipper": |
| 23 | | pass |
| 24 | | |
| 123 | """ |
| 124 | Set the right child of the focus node. |
| 125 | |
| 126 | Args: |
| 127 | tree: The new right subtree (or None to remove the right child) |
| 128 | |
| 129 | Returns: |
| 130 | A new Zipper with the updated right child |
| 131 | """ |
| 132 | # Edge Case: Handle None tree |
| 133 | if self.tree is None: |
| 134 | return self |
| 135 | new_tree = self.tree.copy() |
| 136 | new_tree["right"] = tree |
| 137 | return Zipper(new_tree, self.breadcrumbs) |
| 138 | |
| 25 | 139 | def up(self) -> "Zipper | None": |
| 26 | | pass |
| 27 | | |
| 140 | """ |
| 141 | Move the focus to the parent node. |
| 142 | |
| 143 | Returns: |
| 144 | A new Zipper focused on the parent, or None if already at the root |
| 145 | """ |
| 146 | # Edge Case: Handle when already at root (no breadcrumbs) |
| 147 | if not self.breadcrumbs: |
| 148 | return None |
| 149 | |
| 150 | # Get the last breadcrumb |
| 151 | parent_info = self.breadcrumbs[-1] |
| 152 | parent = parent_info["parent"].copy() |
| 153 | side = parent_info["side"] |
| 154 | sibling = parent_info["sibling"] |
| 155 | |
| 156 | # Reconstruct the parent with the current tree in the correct position |
| 157 | if side == "left": |
| 158 | parent["left"] = self.tree |
| 159 | parent["right"] = sibling |
| 160 | else: # side == "right" |
| 161 | parent["right"] = self.tree |
| 162 | parent["left"] = sibling |
| 163 | |
| 164 | return Zipper(parent, self.breadcrumbs[:-1]) |
| 165 | |
| 28 | 166 | def to_tree(self) -> dict: |
| 29 | | pass |
| 167 | """ |
| 168 | Get the complete tree from the zipper. |
| 169 | |
| 170 | Returns: |
| 171 | The complete binary tree |
| 172 | """ |
| 173 | # Navigate back to the root to get the complete tree |
| 174 | current = self |
| 175 | while True: |
| 176 | parent = current.up() |
| 177 | if parent is None: |
| 178 | break |
| 179 | current = parent |
| 180 | return current.tree |
| 181 | |
| 182 | # Handled Edge Cases: None tree input, None left/right child, Already at root |