Setup getting filename and inputting list

This commit is contained in:
2023-01-12 13:32:19 -06:00
parent 39eb906721
commit 7e8873fd1a
7 changed files with 76 additions and 4 deletions
+21
View File
@@ -0,0 +1,21 @@
#ifndef SORTS_H
#define SORTS_H
#include <string>
#include <vector>
class Sorter
{
private:
std::string filename;
std::vector<std::string> wordList;
public:
void SetFileName(std::string newName);
std::string GetFileName(void);
void SetWordList(void);
void InsertionSort(void);
void MergeSort(void);
void HeapSort(void);
};
#endif