Skip to content

binary_tree_traversals.py: Simplify with dataclasses #4336

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 7 additions & 15 deletions data_structures/binary_tree/binary_tree_traversals.py
Original file line number Diff line number Diff line change
@@ -1,24 +1,16 @@
# https://en.wikipedia.org/wiki/Tree_traversal
from dataclasses import dataclass


class Node:
"""
A Node has data variable and pointers to its left and right nodes.
"""

def __init__(self, data):
self.left = None
self.right = None
self.data = data
@dataclass
class Node(object):
data: int
left: "Node" = None
right: "Node" = None
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I did not notice this the first time but shouldn't this be Optional["Node"]?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

My sense was that if neither Python nor mypy was complaining about it then I would not either. This would be the only location where we would set these values to None unless we started deleting Nodes which I assumed we were not gonna do.

Copy link
Member

@dhruvmanila dhruvmanila Apr 21, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Python is never going to complain as it simply does not care about type hints. mypy will complain when you run it in a bit stricter modes. Plain mypy will not complain about a lot of stuff as that's how gradual typing goes.

And no, as per this definition, the leaves of the trees (the last nodes) will have its left and right node None as there are no left and right child (we have reached the end).

Copy link
Member Author

@cclauss cclauss Apr 21, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This would be the only location where we would set these values to None

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, but that still won't allow the file to be type checked later on. The variable's correct type is Optional["Node"]. Just because it is being set None once, does not change the type of that variable. That's what 'static' means in static typing :)



def make_tree() -> Node:
root = Node(1)
root.left = Node(2)
root.right = Node(3)
root.left.left = Node(4)
root.left.right = Node(5)
return root
return Node(1, Node(2, Node(4), Node(5)), Node(3))


def preorder(root: Node):
Expand Down