mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-05-11 11:07:27 +08:00
remove pauses
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user