Rename flowcharts

This commit is contained in:
2021-12-13 11:26:05 -06:00
parent ada5fc4db6
commit ef6db4b23b
4 changed files with 2 additions and 2 deletions

View File

@@ -0,0 +1,44 @@
```mermaid
classDiagram
Sorter <|-- QuickSorter
Sorter <|-- CountingoSorter
Sorter <|-- MergeSorter
Sorter <|-- InsertionSorter
Sorter <|-- SelectionSorter
Sorter <|-- BubbleSorter
class Sorter{
<<abstract>>
+SortResult measuredSort()
#sort() void
#String sortType
#Integer[] numbers
#String writesUsed
#String comparisonsUsed
#compare() int
#swap() void
}
class BubbleSorter{
#sort()
}
class QuickSorter{
#sort() void
-quickSort()
-partition()
}
class InsertionSorter{
#sort() void
}
class RandomNumberFileMaker{
-String filname
-int count
-int max
-int min
+writeFile(): void
}
```