Ejemplo n.º 1
0
 def test_exceptionthrow(self):
     """Tests when the node1 and node2 are in different trees."""
     s = (
         "1(10(11(12(20(21(22[23(24)[25]]))[200]))" +
         "[13(14[15[16(17(18)[19])]])]))" +
         "[2[3(33(34)[35])[4(5(6)[7[8(9)]])]]]"
     )
     root = mfs(s, BTN)
     n1 = root.findnode(34)
     n2 = BTN(42)
     try:
         lca(n1, n2)
     except StandardError:
         pass
Ejemplo n.º 2
0
 def test_singlecase(self):
     """Test a tree with just a root."""
     s = "42"
     root = mfs(s, BTN)
     n1 = root.findnode(42)
     n2 = root.findnode(42)
     self.assertEqual(lca(n1, n2).val, 42)
Ejemplo n.º 3
0
 def test_node2isLCA(self):
     """Tests when node2 is the LCA of node1 and node2."""
     s = (
         "1(10(11(12(20(21(22[23(24)[25]]))[200]))" +
         "[13(14[15[16(17(18)[19])]])]))" +
         "[2[3(33(34)[35])[4(5(6)[7[8(9)]])]]]"
     )
     root = mfs(s, BTN)
     n1 = root.findnode(24)
     n2 = root.findnode(20)
     self.assertEqual(lca(n1, n2).val, 20)
Ejemplo n.º 4
0
 def test_verydifferentbranches(self):
     """Tests when the LCA is the root."""
     s = (
         "1(10(11(12(20(21(22[23(24)[25]]))[200]))" +
         "[13(14[15[16(17(18)[19])]])]))" +
         "[2[3(33(34)[35])[4(5(6)[7[8(9)]])]]]"
     )
     root = mfs(s, BTN)
     n1 = root.findnode(34)
     n2 = root.findnode(20)
     self.assertEqual(lca(n1, n2).val, 1)
Ejemplo n.º 5
0
 def test_differentbranches(self):
     """Tests when node1 and node2 are are not their LCA."""
     s = (
         "1(10(11(12(20(21(22[23(24)[25]]))[200]))" +
         "[13(14[15[16(17(18)[19])]])]))" +
         "[2[3(33(34)[35])[4(5(6)[7[8(9)]])]]]"
     )
     root = mfs(s, BTN)
     n1 = root.findnode(34)
     n2 = root.findnode(9)
     self.assertEqual(lca(root, n1, n2).val, 3)