adding usage flowchart

This commit is contained in:
2020-06-05 14:42:23 -05:00
parent f6bd8bbfc7
commit 52095c928d

10
Sorting/flowchart.md Normal file
View File

@@ -0,0 +1,10 @@
```mermaid
graph TD;
A[AlgorithmTester]
A --> |make random number file| B[Enter filename]
B --> F[How many numbers?]
F --> G[Maximum number?]
G --> H[Minimum number?] --> |writes file|A
A --> |sort random number file| C[choose sorting algorithms]
C --> D[Print the numbers?]
D -->