update flowchart

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

View File

@@ -4,9 +4,9 @@ graph TD;
A --> |make random number file| B[Enter file name]
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]
G --> H[Minimum number?] --> |write file|A
A --> |sort random number file| K[Enter file name]
K --> C[choose sorting algorithms]
C --> D[Print the numbers?]
D --> |yes| E[Print sorted list] --> I
D --> |no| I[Print sort results]
I --> A
D --> |print sorting results|A
A --> |exit| J[Exit program]