摘要:
#!/usr/bin/env python3.3# -*- coding: utf-8 -*-# Copyright 2013from test import supportimport unittestimport randomimport sortclass SortTests(unittest.TestCase): def setUp(self): self.data = [random.randint(1, 10000) for i in range(10000)] def tearDown(self): self.... 阅读全文