I don't even rememeber what I changed between now and last commit

This commit is contained in:
2024-03-18 18:11:48 -05:00
parent debcca3729
commit f39848f9b3
174 changed files with 16569 additions and 2577 deletions

View File

@@ -59,7 +59,7 @@ int main(){
endwin();
cout << "\033[2J\033[1;1H"; // Clear screen unicode sequence
highlightTuple.clear();
vector = random2DArray(10, 100);
vector = random2DArray(10, 10);
std::sort(vector.begin(), vector.end());
//printf("2D Vector: %s \n", printVector(vector).c_str());
printf("Linear search is being used to locate the tuples to highlight!\n");
@@ -112,9 +112,9 @@ int main(){
endwin();
cout << "\033[2J\033[1;1H"; // Clear screen unicode sequence
printf("Highlighting every other tuple...\n");
vector = random2DArray(10, 100);
vector = random2DArray(10, 10);
std::sort(vector.begin(), vector.end());
highlightTuple = highlightEveryOther(10, 100);
highlightTuple = highlightEveryOther(10, 10);
printf("2D Vector:\n%s\n", printVector(vector, highlightTuple).c_str());
cout << "Press Enter to Continue";
getchar();