update flowchart

This commit is contained in:
2020-06-08 13:44:48 -05:00
parent 6472b7a902
commit 5cac156f29

View File

@@ -1,12 +1,12 @@
```mermaid ```mermaid
graph TD; graph TD;
A[AlgorithmTester] A[AlgorithmTester]
A --> |make random number file| B[Enter filename] A --> |make random number file| B[Enter file name]
B --> F[How many numbers?] B --> F[How many numbers?]
F --> G[Maximum number?] F --> G[Maximum number?]
G --> H[Minimum number?] --> |writes file|A G --> H[Minimum number?] --> |write file|A
A --> |sort random number file| C[choose sorting algorithms] A --> |sort random number file| K[Enter file name]
K --> C[choose sorting algorithms]
C --> D[Print the numbers?] C --> D[Print the numbers?]
D --> |yes| E[Print sorted list] --> I D --> |print sorting results|A
D --> |no| I[Print sort results] A --> |exit| J[Exit program]
I --> A