2020-07-11 09:02:32 +08:00
|
|
|
import unittest
|
2015-08-01 21:26:03 +08:00
|
|
|
|
|
|
|
|
2020-07-11 09:02:32 +08:00
|
|
|
class TestBfs(unittest.TestCase):
|
2015-08-01 21:26:03 +08:00
|
|
|
|
2020-07-11 09:02:32 +08:00
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super(TestBfs, self).__init__()
|
2015-08-05 07:34:54 +08:00
|
|
|
self.results = Results()
|
|
|
|
|
2015-08-01 21:26:03 +08:00
|
|
|
def test_bfs(self):
|
2016-08-14 20:26:57 +08:00
|
|
|
bst = BstBfs(Node(5))
|
|
|
|
bst.insert(2)
|
|
|
|
bst.insert(8)
|
|
|
|
bst.insert(1)
|
|
|
|
bst.insert(3)
|
|
|
|
bst.bfs(self.results.add_result)
|
2020-07-11 09:02:32 +08:00
|
|
|
self.assertEqual(str(self.results), '[5, 2, 8, 1, 3]')
|
2015-08-01 21:26:03 +08:00
|
|
|
|
|
|
|
print('Success: test_bfs')
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
test = TestBfs()
|
|
|
|
test.test_bfs()
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2020-07-11 09:02:32 +08:00
|
|
|
main()
|