Skip to content

Commit e75204a

Browse files
committed
renew README
1 parent 969965f commit e75204a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Second, I have put different implemented versions of various sorting algorithms
2424
import sortingx as sx
2525
```
2626

27-
For example, If I use the `bubble` sorting algorithm to sort a real data set in reverse order, use the following commands:
27+
For example, If I use the `bubble` sorting algorithm to sort a real data in reverse, use the following commands:
2828

2929
```python
3030
import random
@@ -60,9 +60,9 @@ Lastly, many algorithms are *in-place* sorting, and a few are *out-place*, you s
6060

6161
## Test Description
6262

63-
I test the performance of the sorting algorithm after adding the keyword sorting parameter in the [*test_key*](./test_key.py) file (The [*utils*](./utils.py) file stores the most core function for keyword sorting), test the sorting time accumulation of the sorting algorithm with respect to the large data set in the [*test_time*](./test_time.py) file, and test whether the reverse order parameters of the sorting algorithm are designed correctly in the [*test_reverse*](./test_reverse.py) file, including the robustness of the algorithm.
63+
I test the performance of the sorting algorithm after adding the keyword sorting parameter in the [*test_key*](./test_key.py) file (The [*utils*](./utils.py) file stores the most core function for keyword sorting), test the sorting time accumulation of the sorting algorithm with respect to the large data set in the [*test_time*](./test_time.py) file, and test whether the reverse parameters of the sorting algorithm are designed correctly in the [*test_reverse*](./test_reverse.py) file, including the robustness of the algorithm.
6464

65-
The design of reverse order sorting of all methods is completely correct, and the design of keyword sorting based on bubble sorting optimized is feasible, which is consistent with the usage of *sorted* parameter officially released by Python.
65+
The design of reverse sorting of all methods is completely correct, and the design of keyword sorting based on bubble sorting optimized is feasible, which is consistent with the usage of *sorted* parameter officially released by Python.
6666

6767
## LICENSE
6868

0 commit comments

Comments
 (0)