blob: 9bdb6b772e5e37707dc2dd75df066f63b693ea80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
│ Given an integer k and a binary search tree, find the floor (less than
│ or equal to) of k, and the ceiling (larger than or equal to) of k. If
│ either does not exist, then print them as None.
│ Here is the definition of a node for the tree.
│class Node:
│ def __init__(self, value):
│ self.left = None
│ self.right = None
│ self.value = value
│def findCeilingFloor(root_node, k, floor=None, ceil=None):
│ # Fill this in.
│root = Node(8)
│root.left = Node(4)
│root.right = Node(12)
│
│root.left.left = Node(2)
│root.left.right = Node(6)
│
│root.right.left = Node(10)
│root.right.right = Node(14)
│print findCeilingFloor(root, 5)
│# (4, 6)
|