remove pauses

This commit is contained in:
Krishna Vedala
2020-07-29 19:43:33 -04:00
parent b3cd53b26c
commit 9c5f853752
3 changed files with 26 additions and 18 deletions

View File

@@ -11,7 +11,7 @@
#include <vector>
/**
* @addtogroup Open Addressing
* @addtogroup open_addressing Open Addressing
* @{
* @namespace quadratic_probing
* @brief An implementation of hash table using [quadratic
@@ -250,8 +250,6 @@ int main() {
table = std::vector<Entry>(totalSize);
bool loop = true;
while (loop) {
std::cout << "\nPress a key to continue...\n";
std::cin.get();
std::cout << std::endl;
std::cout << "PLEASE CHOOSE -" << std::endl;
std::cout << "1. Add key. (Numeric only)" << std::endl;